El atributo de valor para el elemento <button> en HTML se usa para especificar el valor inicial del elemento button.
Sintaxis:
<button value = "value">
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML button value Attribute</title> </head> <body style = "text-align:center"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> HTML button value Attribute </h2> <button id="btn" value="GeeksforGeeks" onclick="geek()"> Click me!</button> <p id="g"></p> <script> function geek() { var x = document.getElementById("btn").value; document.getElementById("g").innerHTML = x; } </script> </body> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con el atributo de valor en el elemento de botón se enumeran a continuación:
- safari de manzana
- Google Chrome
- Borde 12
- Firefox
- Ópera
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA