El atributo HTML <textarea> requerido es un atributo booleano que se utiliza para especificar que el elemento <textarea> debe completarse antes de enviar el formulario .
Sintaxis:
<textarea required>
Ejemplo: Este ejemplo ilustra el uso del atributo requerido en el elemento Textarea.
html
<!DOCTYPE html> <html> <head> <title>required Attribute</title> <style> h1, h2 { color: green; font-style: italic; } body { text-align: center; } </style> </head> <body> <h1>GeeksForGeeks</h1> <h2>HTML Textarea required attribute </h2> <form action="#"> <textarea rows="7" cols="50" name="comment" required></textarea> <input type="submit"> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo requerido HTML Textarea se enumeran a continuación:
- Google cromo 4
- Borde 12
- explorador de Internet 10
- firefox 4
- Ópera 12.1
- Safari 5
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA