最新的Web開發教程
 

HTML <input> step Attribute

<HTML <input>標籤

HTML表單與指定合法的數字間隔輸入字段:

<form action="demo_form.asp">
  <input type="number" name="points" step="3">
  <input type="submit">
</form>
試一試»

定義和用法

step屬性規定的合法的數字間隔<input>元素。

例如:如果step="3"合法的數是-3,0,3,6,等

提示: step屬性可以一起使用maxmin屬性來創建一系列法律價值觀。

注: step屬性適用於以下輸入類型: number, range, date, datetime, datetime-local, month, timeweek


瀏覽器支持

在表中的數字指定完全支持屬性所述第一瀏覽器的版本。

屬性
step 6 10.0 16.0 5 10.6

HTML 4.01和HTML5之間的差異

step屬性,HTML5是新的。


句法

<input step=" number ">

屬性值

描述
number 指定輸入字段的合法的數字間隔。 默認值為1

<HTML <input>標籤