HTML input step属性
input step属性
HTML input元素step属性,设置该输入字段的有效的数值间隔,比如,如果step="5",那么有效的字段输入值为-5,0,5,10,15等等,以此类推。
语法
<input step="value">
提示:step属性适用于type值为number,range,datetime,date,time,datetime-local,month或week的input元素。
input step属性实例代码,及在线编辑器
在下方的实例中,在线运行之后,可以输入数字1试一试:
<form>
<input type="number" step="5">
<input type="submit">
</form>