I want maxLength Validation in in HTML5.
我想在HTML5中使用maxLength验证。
I tried like this
我试过这样的
<input type="number" name="trainer_mobile_no[]" maxlength="10" class="form-control" required="required"/>
3 个解决方案
#1
1
You cannot set max length but max value for number input type something like this:
你不能设置最大长度,但数字输入类型的最大值是这样的:
<input type="number" min="0" max="100">
#2
0
you can add a max attribute that will specify the highest possible number that you may insert
您可以添加一个max属性,该属性将指定您可以插入的最高编号
<input type="number" max="999" />
if you add both a max and a min value you can specify the range of allowed values:
如果同时添加最大值和最小值,则可以指定允许值的范围:
<input type="number" min="1" max="999" />
#3
0
Use as
用于
<input type="number" name="trainer_mobile_no[]" min="1" max="5" class="form-control" required="required">
#1
1
You cannot set max length but max value for number input type something like this:
你不能设置最大长度,但数字输入类型的最大值是这样的:
<input type="number" min="0" max="100">
#2
0
you can add a max attribute that will specify the highest possible number that you may insert
您可以添加一个max属性,该属性将指定您可以插入的最高编号
<input type="number" max="999" />
if you add both a max and a min value you can specify the range of allowed values:
如果同时添加最大值和最小值,则可以指定允许值的范围:
<input type="number" min="1" max="999" />
#3
0
Use as
用于
<input type="number" name="trainer_mobile_no[]" min="1" max="5" class="form-control" required="required">