具有指定合法数字间隔的输入字段的 HTML 表单:
<form action="/action_page.php"> <label for="points">积分:</label> <input type="number" id="points" name="points" step="3"> <input type="submit"> </form>
step
属性指定 <input>
元素中合法数字之间的间隔。
示例:如果 step="3"
,则合法数字可以是 -3、0、3、6 等。
提示: step
属性可以与 max
和 min
属性一起使用,以创建一系列合法值。
注意: step
属性适用于以下输入类型:数字、范围、日期、本地日期时间、月、时间和周。
表中的数字指定了完全支持该属性的第一个浏览器版本。
属性 Attribute | |||||
---|---|---|---|---|---|
step | 6.0 | 10.0 | 16.0 | 5.0 | 10.6 |
<input step="number">
值 Value | 描述 Description |
---|---|
number | 指定输入字段中合法数字之间的间隔。 默认为 1 |
any |