当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。