HTML5 input numeric between numbers

强颜欢笑 提交于 2019-12-13 07:59:58

问题


How do I check with HTML5 if input is between 1-100?

<input type="numeric" name="count" pattern="[1-9]" />

回答1:


Using min and max.

<input type="number" name="count" min="1" max="100">

Note the type is number.



来源:https://stackoverflow.com/questions/13569365/html5-input-numeric-between-numbers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!