DOM Meter min屬性用於設置或返回儀表中的min屬性值。 min屬性用於指定量規的下限。min屬性的值必須小於max屬性的值。它的默認值為0。
用法:
- 它返回min屬性。
meterObject.min
- 用於設置min屬性。
meterObject.min = number
屬性值:它包含值,即用於指定浮點數的數字,該浮點數表示儀表的最小值。
返回值:它返回一個數值,該數值代表量規的最小值。
示例1:本示例返回min屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Meter min Property
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM Meter min 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").min;
document.getElementById("sudo").innerHTML =
g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例返回min屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Meter min Property
</title>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
DOM Meter min 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").min =
"10";
document.getElementById("sudo").innerHTML =
"The value of the min attribute was changed to "
+ g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM Meter min屬性支持的瀏覽器如下:
- Chrome
- Firefox
- Safari 6.0
- Opera
相關用法
- HTML Meter low用法及代碼示例
- HTML Meter value用法及代碼示例
- 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 min Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。