How can I limit possible inputs in a HTML5 “number” element?

前端 未结 26 2824
感动是毒
感动是毒 2020-11-22 05:12

For element, maxlength is not working. How can I restrict the maxlength for that number element?

26条回答
  •  一个人的身影
    2020-11-22 05:26

    If you are looking for a Mobile Web solution in which you wish your user to see a number pad rather than a full text keyboard. Use type="tel". It will work with maxlength which saves you from creating extra javascript.

    Max and Min will still allow the user to Type in numbers in excess of max and min, which is not optimal.

提交回复
热议问题