El atributo HTML <input> minlength se utiliza para definir el atributo <input> minlength. el valor Integer debe comenzar con 0 o superior.
Sintaxis:
< input minlength="numeric">
Valor de atributo:
- número: Contiene el valor numérico, es decir, 0 o superior.
Ejemplo:
html
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> minlength attribute </h2> <form action=""> Username: <input type="text" name="username" minlength="10"> <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 <input> minlength se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA