标签: html5 validation input
我正在使用<input type="number">,其中向上箭头每次点击增加+1值,或按住时按下。但是有可能将其增加10, 20, 30 .....,因为我的输入数字非常在900-20000范围内。
<input type="number">
10, 20, 30 .....
900-20000
答案 0 :(得分:4)
使用step属性可以做到
使用step=10
step=10
<input type="number" step=10 />
FIDDLE DEMO