El atributo de formulario HTML <input> se utiliza para especificar que el elemento <input> puede contener uno o más formularios.
Sintaxis:
<input form="form_id">
Valor de atributo: contiene un valor único form_id que 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: Este ejemplo ilustra el atributo us of form en el elemento <input> .
<!DOCTYPE html> <html> <head> <title> HTML input form Attribute </title> </head> <body style="text-align:center"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> HTML <input> form Attribute </h2> <form id="myGeeks"></form> <br> Name: <input type="text" id="btn" name="myGeeks" form="myGeeks"> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de formulario HTML <input> se enumeran a continuación:
- Google cromo 9.0
- Firefox 4.0
- Apple Safari 5.1
- Ópera 10.6
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA