Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始学习 HTML5 验证。
有人可以告诉我如何验证一个<input>字段是否超过 5 个字符?
<input>
您是否想问如何确保输入字段至少有 5 个字符?
<form> <input type="password" required pattern=".{5,}" name="pwd1"></p> <input type="submit"> </form>
如果您没有在密码类型字段上尝试此操作,请更改输入类型
您可以使用模式属性
<input type="password" … pattern=".{6}"> /* Six characters minimum */
查看文档以获取更多信息。