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


HTML Meter low用法及代碼示例


DOM Meter low屬性用於設置或返回儀表中的low屬性的值。 low屬性用於指定被認為是低值的範圍。 low屬性的值必須大於“min”,小於“max”和“high”屬性。

用法:

  • 它返回low屬性。
    meterObject.low
  • 用於設置低屬性。
    meterObject.low = number

屬性值:它包含一個值,即數字,該數字指定被認為是低值的浮點數。


示例1:本示例返回low屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      DOM Meter low Property 
  </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM Meter low Property:</h2> 
  
    <!-- assigning id to meter with  
        properties. -->
    <meter value="0.6"
           max="0.9"
           min="0.1" 
           id="GFG" 
           optimum="0.6"
           high="0.5" 
           low="0.2"> 
  </meter> 
  
    <br> 
    <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").low; 
            document.getElementById("sudo").innerHTML = 
              g; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

示例2:本示例設置較低的屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      DOM Meter low Property 
  </title> 
</head> 
  
<body> 
    <h1> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      DOM Meter low Property:
  </h2> 
  
    <!-- assigning id to meter with  
        properties. -->
    <meter value="0.6" 
           max="0.9" 
           min="0.1"
           id="GFG"
           optimum="0.6"
           high="0.5"
           low="0.2"> 
  </meter> 
  
    <br> 
    <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").low = 
                "0.4"; 
            
            document.getElementById("sudo").innerHTML =  
              "The value of the low attribute was changed to "  
            + g; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Meter low屬性支持的瀏覽器:

  • Chrome
  • Firefox
  • Safari 6.0
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Meter low Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。