El HTML <input type = “button”> se utiliza para definir un botón en el que se puede hacer clic en un documento . Se usa principalmente con Javascript para activar el script.
Sintaxis:
<input type="button">
Ejemplo:
html
<html> <head> <title> HTML input type="button" </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>HTML <input type = "button"></h2> <input type="button" onclick="send()" value="submit"> <script> function send() { alert("Hello World"); } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 1.0 y superior
- Firefox 1.0 y superior
- Borde 12 y superior
- Ópera
- Apple Safari 1.0 y superior
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA