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.
我有一个密码字段,我的印象是这些会自动验证并遵守?
我正在使用Foundation 5。
目前我可以输入我喜欢的任何内容,它将通过验证。
我知道 abide 工作正常,因为其他领域失败了。
我需要输入一个模式才能让它工作吗?是否有特定的密码?
是的,你需要输入一个模式,如果你只设置所需的标志,无论你设置一个字符,它都会通过。你需要添加一些东西
<input type="password" name="password" id="txt_password" placeholder="Password" autocomplete="off" required pattern="alpha_numeric">
它将限制为字母数字密码。
您可以使用预定义模式或随意创建自定义模式。