HTML5表单验证将密码阻为16个字符,如何更改?

时间:2013-09-06 13:22:42

标签: html5 forms

我做了一个简单的登录表单,但客户想要输入一个包含24个字符的密码。奇怪的是,似乎HTML5中的表单验证器在16处阻止它,这真的很烦人。我试过模式,但没有工作。有什么想法吗?

<input type="password" id="password" name="password" pattern=".{5,25}" required />

所以我想将其限制为24个字符而不是默认值16。

enter image description here

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

maxlength="24"添加到您的属性

<input type="password" id="password" name="password" maxlength="24" required="true" />