DOM Progress max屬性用於設置或返回<progress>元素的max屬性的值。 max屬性表示完成一項任務要完成的全部工作。
用法:
- 它用於返回progress max屬性。
progressObject.max
- 用於設置最大進度屬性。
progressObject.max = number
屬性值:
- number:它指定了已經競爭過的數值工作量。
返回值:它返回一個浮點數,該浮點數表示完成一項任務所需的工作量。
示例1:本示例說明了如何設置progress max屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Progress max Property
</title>
</head>
<body>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Progress max Property </h2>
Downloading progress for a song:
<progress id="GFG" value="30" max="100">
</progress>
<br>
<br>
<button onclick="myGeeks()">
Submit
</button>
<script>
function myGeeks() {
var pr = document.getElementById("GFG").max = "60";
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何返回progress max屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Progress max Property
</title>
</head>
<body>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Progress max Property </h2>
Downloading progress for a song:
<progress id="GFG" value="57" max="100">
</progress>
<br>
<br>
<button onclick="myGeeks()">
Submit
</button>
<p id="sudo"></p>
<script>
function myGeeks() {
var pr =
document.getElementById("GFG").max;
document.getElementById("sudo").innerHTML =
pr;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM Progress max屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Progress position用法及代碼示例
- HTML DOM Progress用法及代碼示例
- HTML <progress> max屬性用法及代碼示例
- HTML <progress> value屬性用法及代碼示例
- HTML Map name用法及代碼示例
- HTML DOM value用法及代碼示例
- HTML li value用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML DOM name用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Progress max Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。