HTML <input> 标签的 minlength 属性 详解
HTML基础 2022-06-02 12:03:33小码哥的IT人生shichen
HTML <input> 标签的 minlength 属性
实例
最小长度为 8 个字符的 <input> 元素:
<form action="/action_page.php">
<label for="password">Password:</label>
<input type="password" id="password" name="password" minlength="8"><br><br>
<input type="submit" value="Submit">
</form>
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<body>
<h1>input minlength 属性</h1>
<form action="/demo/action_page.php">
<label for="password">密码:</label>
<input type="password" id="password" name="password" minlength="8"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
minlength
属性规定输入字段中所需的最小字符数。
注释:minlength
属性可以与以下类型一起使用:
- text
- search
- url
- tel
- password
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
属性 | Chrome | Internet Explorer / Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
minlength | 40.0 | 17.0 | 51.0 | 10.1 | 27.0 |
语法
<input minlength="number">
属性值
值 | 描述 |
---|---|
number | <input> 元素中所需的最小字符数。 |