El atributo HTML <Textarea>maxlength se utiliza para especificar el número máximo de caracteres que se ingresan en el elemento Textarea.
Sintaxis:
<Textarea maxlength ="number">
Valor de atributo:
- número: contiene un número de valor único que permite el número máximo de caracteres en el elemento Textarea. Su valor predeterminado es 524288.
Ejemplo:
<!DOCTYPE html> <html> <head> <title>Textarea maxlength Attribute</title> <style> } fieldset { width: 50%; margin-left: 22%; } h1 { color: green; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2>Textarea maxlength Attribute</h2> <textarea form="mygeeks" maxlength="9"> </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 el atributo HTML <Textarea>maxlength se enumeran a continuación:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox 4.0
- Ópera 15.0
- 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