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


HTML Input Range step用法及代码示例


HTML DOM中的DOM输入范围step属性用于设置或返回滑块控件的step属性的值。 step属性用于指定两个值之间的空间大小。此属性可与min和max一起使用以创建值范围。

用法:

  • 它返回输入范围步骤属性:
    rangeObject.step
  • 用于设置“输入范围”步长属性:
    rangeObject.step = number

属性值:它包含指定步长的单个值数字。步骤的默认值为1。


Return Values:它返回一个数字,代表值之间的增量。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Range step Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2> 
      DOM Input Range step Property 
  </h2> 
  
    <input type="range" 
           id="myRange"
           step="15"> 
  
    <br> 
    <br> 
  
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <p id="GFG" 
       style="font-size:23px; 
              color:green;"> 
  </p> 
  
    <script> 
        function myGeeks() { 
  
            // Accessing input value  
            var x = 
                document.getElementById( 
                  "myRange").step; 
            
            document.getElementById( 
              "GFG").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Range step Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2> 
      DOM Input Range step Property 
  </h2> 
  
    <input type="range"
           id="myRange"
           step="15"> 
  
    <br> 
    <br> 
  
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <p id="GFG" 
       style="font-size:23px; 
              color:green;"> 
  </p> 
  
    <script> 
        function myGeeks() { 
  
            // Accessing input value   
            var x = 
                document.getElementById( 
                  "myRange").step = "25"; 
  
            document.getElementById( 
              "GFG").innerHTML = 
                "The value of the step attribute"+ 
              " was changed to " + x; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Input Range步骤属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 HTML | DOM Input Range step Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。