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


HTML Input Range max用法及代码示例


HTML DOM中的Input Range max属性用于设置或返回滑块控件的max属性值。 max属性用于指定滑块控件的最大值。

用法:

  • 它返回Input Range max属性:
    rangeObject.max
  • 用于设置最大输入范围属性:
    rangeObject.max = number

属性值:它包含单个值数字,该数字指定滑块控件允许的最大值。


返回值:它返回一个代表最大允许值的字符串。

示例1:返回最大输入范围属性

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Range max Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>DOM Input Range max Property</h2> 
  
    <input type="range" 
           id="myRange" 
           min="10" 
           max="50"> 
  
    <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").max; 
            
            document.getElementById( 
              "GFG").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

示例2:设置输入范围最大属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Range max Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2> 
      DOM Input Range max Property 
  </h2> 
  
    <input type="range" 
           id="myRange" 
           min="10"
           max="50"> 
  
    <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").max = "70"; 
  
            document.getElementById( 
              "GFG").innerHTML = 
                "The value of the max attribute"+ 
              " was changed to " + x; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

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

  • 谷歌浏览器
  • Internet Explorer 10.0
  • Firefox
  • Safari
  • Opera


相关用法


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