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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。