HTML <input> minlength 属性
定义和用法
minlength
属性规定 <input> 元素中所需的最小字符数。
注意:minlength
属性可用于以下输入类型:
- text
- search
- url
- tel
- password
实例
最小长度为 8 个字符的 <input> 元素:
<form action="/action_page.php"> <label for="password">密码:</label> <input type="password" id="password" name="password" minlength="8"><br><br> <input type="submit" value="提交"> </form>
语法
<input minlength="number">
属性值
值 | 描述 |
---|---|
number | <input> 元素中所需的最少字符数。 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
40.0 | 17.0 | 51.0 | 10.1 | 27.0 |