El atributo de formulario HTML <button> se utiliza para especificar uno o más formularios a los que pertenece el elemento <button> .
Sintaxis:
<button form="form_id">
Valores de atributos:
- form_id: contiene el valor, es decir, form_id que especifica uno o más elementos a los que pertenece el botón. El valor de este atributo debe ser el id del elemento <form>.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML | <button> form Attribute </title> </head> <body style="text-align:center"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> HTML<button> form Attribute </h2> <form id="myGeeks"> </form> <button id="btn" name="myGeeks" form="myGeeks" onclick="geek()"> Click me!</button> </body> </html>
Producción:
Navegadores compatibles: El navegador compatible con HTML | Los atributos del formulario <button> se enumeran a continuación:
- Google Chrome
- Borde 16 y superior
- Internet Explorer no es compatible
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA