HTML DOM中的DOM計量器最佳屬性用於設置或返回計量器中最佳屬性的值。 HTML中的最佳屬性指示儀表的最佳數值。它必須在最小和最大之間的範圍內。當將它與low和high屬性一起使用時,它會指示在該範圍內哪個位置更好。
用法:
- 它返回最佳屬性。
meterObject.optimum
- 用於設置最佳屬性
meterObject.optimum = number
屬性值:它包含一個數字值,該數字指定浮點數,該浮點數是儀表的最佳值。
示例1:本示例返回最佳屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Meter optimum Property
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>
DOM Meter optimum 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").optimum;
document.getElementById(
"sudo").innerHTML = g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例設置最佳屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Meter optimum Property
</title>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
DOM Meter optimum 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").optimum = "0.8";
document.getElementById(
"sudo").innerHTML =
"The value of the optimum attribute"+
" was changed to " + g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 穀歌瀏覽器
- 火狐瀏覽器
- Safari
- Opera
相關用法
- HTML <meter> optimum屬性用法及代碼示例
- HTML Meter max用法及代碼示例
- HTML Meter min用法及代碼示例
- HTML Meter value用法及代碼示例
- HTML Meter low用法及代碼示例
- HTML Meter high用法及代碼示例
- HTML optimum屬性用法及代碼示例
- HTML <meter> value屬性用法及代碼示例
- HTML <meter> low屬性用法及代碼示例
- HTML <meter> max屬性用法及代碼示例
- HTML DOM meter用法及代碼示例
- HTML <meter> high屬性用法及代碼示例
- HTML <meter> form屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Meter optimum Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。