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
相關用法
- HTML Meter value用法及代碼示例
- HTML Meter min用法及代碼示例
- HTML Meter max用法及代碼示例
- HTML Meter optimum用法及代碼示例
- HTML Meter high用法及代碼示例
- HTML <meter> low屬性用法及代碼示例
- HTML <meter> max屬性用法及代碼示例
- HTML DOM meter用法及代碼示例
- HTML <meter> value屬性用法及代碼示例
- HTML <meter> high屬性用法及代碼示例
- HTML <meter> optimum屬性用法及代碼示例
- HTML <meter> form屬性用法及代碼示例
- HTML5 <meter>標記用法及代碼示例
- HTML DOM URL用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Meter low Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。