El atributo de formulario HTML <textarea> se utiliza para especificar uno o más formularios a los que pertenece el elemento <Textarea> .
Sintaxis:
<Textarea form="form_id">
Valores de atributos:
- form_id: contiene el valor, es decir, form_id , que especifica uno o más formularios a los que pertenece el elemento Textarea. El valor de este atributo debe ser el id del elemento <form>.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>Textarea Form Attribute</title> <style> } fieldset { width: 50%; margin-left: 22%; } h1 { color: green; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2><textarea> form Attribute</h2> <textarea form="mygeeks" cols="20" ;> GeeksForGeeks. A computer science portal for Geeks </textarea> <br> <form id="mygeeks"> Name: <input type="text" name="usrname"> <input type="submit"> </form> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con HTML <Textarea>form Attribute se enumeran a continuación:
- Google cromo 1
- Borde 12
- explorador de Internet 6
- Firefox 1
- Ópera 12.1
- Safari 4
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA