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


HTML Meter max用法及代码示例


DOM Meter max属性用于设置或返回仪表的max属性值。 max属性用于指定量规的上限,并且max属性的值必须大于min属性的值。它的默认值为1。

用法:

  • 它返回max属性。
    meterObject.max
  • 它用于设置max属性。
    meterObject.max = number

属性值:它指定一个浮点数,代表浮点数的最大值。它的默认值为1。


返回值:它返回一个浮点数,代表浮点数的最大值。

示例1:本示例返回max属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      DOM Meter max Property 
  </title> 
</head> 
  
<body> 
    <h1> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      DOM Meter max Property:
  </h2> Sachin's score:
  
    <!-- assigning id to meter with  
        properties. -->
    <meter value="5" 
           min="0" 
           max="10"> 
        5 out of 10 
    </meter> 
  
    <br>Laxma score:
  
    <!-- meter tag using value property. -->
    <meter id="GFG" 
           min="20" 
           low="40" 
           high="65"
           max="100" 
           value="55"> 
  </meter> 
    <br> 
  
    <button onclick="Geeks()"> 
        Submit 
    </button> 
  
    <p id="sudo" 
       style="font-size:25px; 
              color:green;"> 
  </p> 
  
    <script> 
        function Geeks() { 
  
            // Accessing 'meter' tag.  
            var g = 
                document.getElementById( 
                  "GFG").max; 
            document.getElementById( 
              "sudo").innerHTML = g; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例设置max属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      DOM Meter max Property 
  </title> 
</head> 
  
<body> 
    <h1> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      DOM Meter max Property:
  </h2> Sachin's score:
  
    <!-- assigning id to meter with  
        properties. -->
    <meter value="5"
           min="0"
           max="10"> 
        5 out of 10 
    </meter> 
  
    <br>Laxma score:
  
    <!-- meter tag using value property. -->
    <meter id="GFG" 
           min="20" 
           low="40" 
           high="65"
           max="100" 
           value="55"> 
  </meter> 
    <br> 
  
    <button onclick="Geeks()"> 
        Submit 
    </button> 
  
    <p id="sudo" 
       style="font-size:25px; 
              color:green;"> 
  </p> 
  
    <script> 
        function Geeks() { 
  
            // Accessing 'meter' tag.  
            var g = 
                document.getElementById( 
                  "GFG").max = "90"; 
            
            document.getElementById( 
              "sudo").innerHTML =  
              "The value of the max attribute was changed to " 
            + +g; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:

  • 火狐浏览器
  • 谷歌浏览器
  • Opera
  • Safari


相关用法


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