當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <input> step屬性用法及代碼示例


HTML中的HTML <input> step屬性用於設置<input>元素的離散步長。數字輸入的默認步進值為1。

用法:適用於以下輸入類型:

  • number
  • range
  • date
  • datetime
  • month
  • time

用法:


<input step = "value"> 

例:本示例說明了<input>元素中step屬性的用法。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML input step Attribute 
  </title> 
</head> 
  
<body> 
  <center> 
    <h1 style="color:green;">  
            GeeksforGeeks  
        </h1> 
  
    <h2>  
            HTML <input>step Attribute  
        </h2> 
  
    <input type="number" 
           name="points" 
           step="5" 
           placeholder="multiples of 5"> 
  
  </center> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了<input>步驟Attribute支持的瀏覽器:

  • 穀歌瀏覽器6.0
  • Internet Explorer 10.0
  • Firefox 16.0
  • 蘋果Safari 5.0
  • Opera 10.6


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <input> step Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。