HTML5中是否有minlength验证属性?

HTML5中是否有minlength验证属性?

看起来字段的minlength属性<input>不起作用。

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


当年话下
浏览 3543回答 3
3回答

慕婉清6462132

您可以使用该pattern属性。该required属性也是必需的,否则将从约束验证中排除具有空值的输入字段。<input&nbsp;pattern=".{3,}"&nbsp;&nbsp;&nbsp;required&nbsp;title="3&nbsp;characters&nbsp;minimum"><input&nbsp;pattern=".{5,10}"&nbsp;required&nbsp;title="5&nbsp;to&nbsp;10&nbsp;characters">如果要创建将模式用于“空或最小长度”的选项,可以执行以下操作:<input&nbsp;pattern=".{0}|.{5,10}"&nbsp;required&nbsp;title="Either&nbsp;0&nbsp;OR&nbsp;(5&nbsp;to&nbsp;10&nbsp;chars)"><input&nbsp;pattern=".{0}|.{8,}"&nbsp;&nbsp;&nbsp;required&nbsp;title="Either&nbsp;0&nbsp;OR&nbsp;(8&nbsp;chars&nbsp;minimum)">
打开App,查看更多内容
随时随地看视频慕课网APP