最小长度为 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>
minlength
属性指定输入字段中所需的最小字符数。
注意: minlength
属性可以与输入类型一起使用:文本、搜索、url、电话、电子邮件和密码。
表中的数字指定了完全支持该属性的第一个浏览器版本。
属性 Attribute | |||||
---|---|---|---|---|---|
minlength | 40.0 | 17.0 | 51.0 | 10.1 | 27.0 |
<input minlength="number">
值 Value | 描述 Description |
---|---|
number | <input> 元素中所需的最小字符数 |