HTML DOM中的Progress对象用于表示HTML <progress>元素。可以使用getElementById()方法访问<progress>元素。
属性值:
- level:它返回进度条列表。
- max:用于设置或返回max属性的进度条值。
- value:它代表已经完成的工作量。
- position:它返回进度条的当前位置。
用法:
document.getElementById("ID");
ID分配给<progress>元素的位置。
范例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Progress Object
</title>
</head>
<body>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Progress Object</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").value;
document.getElementById("sudo").innerHTML = pr;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
范例2:可以使用document.createElement方法创建进度对象。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Progress Object
</title>
</head>
<body>
<h1 style = "color:green;">
GeeksForGeeks
</h1>
<h2>DOM Progress Object</h2>
<P id = "GFG">
Downloading progress for a song:
</p>
<button onclick = "myGeeks()">
Submit
</button>
<script>
function myGeeks() {
var g = document.createElement("PROGRESS");
g.setAttribute("value", "57");
g.setAttribute("max", "100");
document.getElementById("GFG").appendChild(g);
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM Progress Object支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Progress max用法及代码示例
- HTML Progress position用法及代码示例
- HTML DOM Object用法及代码示例
- HTML <progress> max属性用法及代码示例
- HTML <progress> value属性用法及代码示例
- HTML DOM HTML用法及代码示例
- jQuery deferred.progress()用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Progress Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。