📅  最后修改于: 2023-12-03 14:41:51.023000             🧑  作者: Mango
minLength
属性规定输入密码框中允许的最小字符数。
<input type="password" minLength="n">
其中 n
是最小字符数,必须是正整数。
<form>
<label for="pwd">请输入至少六位密码:</label><br>
<input type="password" id="pwd" name="pwd" minLength="6"><br><br>
<input type="submit" value="提交">
</form>
上述示例中,输入密码框中必须至少输入六位字符才可以提交。
minLength
属性在 HTML5 中被引入,并不是所有浏览器都支持该属性。但是,大多数主流浏览器均已支持该属性。
minLength
属性仅适用于 <input type="password">
元素。