El atributo <input> maxlength se utiliza para especificar el número máximo de caracteres que se ingresan en el elemento <input>.
Sintaxis:
<input maxlength="number">
Valor de atributo:
- number: contiene un número de valor único que permite el número máximo de caracteres en el elemento <input>. Su valor predeterminado es 524288.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML input maxlength Attribute </title> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> HTML <input> maxlength Attribute </h2> <form action="#"> Username: <input type="text" name="username" maxlength="12"> <br> <br> Password: <input type="text" name="password" maxlength="10"> <br> <br> <input type="submit" value="Submit"> </form> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de longitud máxima de entrada se enumeran a continuación:
- Google Chrome 1.0
- Internet Explorer 2.0
- Firefox 1.0
- Safari 1.0
- Ópera 1.0