HTML5中是否有minlength验证属性?

前端之家收集整理的这篇文章主要介绍了HTML5中是否有minlength验证属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
看起来的minlength属性字段不工作。

在HTML5中是否有任何其他属性的帮助我可以设置字段的值的最小长度?

@R_301_323@

您可以使用 pattern attribute.也需要 required attribute,否则具有空值的输入字段将从 constraint validation中排除。
<input pattern=".{3,}"   required title="3 characters minimum">
<input pattern=".{5,10}" required title="5 to 10 characters">

如果要创建将此模式用于“空或最小长度”的选项,可以执行以下操作:

<input pattern=".{0}|.{5,10}" required title="Either 0 OR (5 to 10 chars)">
<input pattern=".{0}|.{8,}"   required title="Either 0 OR (8 chars minimum)">
原文链接:https://www.f2er.com/html5/170482.html

猜你在找的HTML5相关文章