El atributo minlength de HTML se usa para especificar el número mínimo de caracteres (como código UTF-16) que el usuario ingresa en el campo de entrada o área de texto. El valor entero debe comenzar con 0 o superior.
Sintaxis:
<Element minlength="numeric">
Aplicable:
- <entrada>
- <área de texto>
Valor de atributo:
- número: Contiene el valor numérico, es decir, 0 o superior.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML | minlength Attribute </title> </head> <body style="text-align: center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>minlength attribute</h2> <form action=""> Username: <input type="text" name="usrname" minlength="10"> <br><br> Password: <input type="text" name="password" maxlength="10"> <br><br> <input type="submit" value="Submit"> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo minlength de HTML se enumeran a continuación:
- safari de manzana
- Google Chrome
- Firefox
- Ópera
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA