HTML DOM Progress 对象
JavaScript基础 2022-05-13 16:22:16小码哥的IT人生shichen
HTML DOM Progress 对象
Progress 对象
Progress 对象是 HTML5 中的新对象。
Progress 对象表示 HTML <progress>
元素。
<progress> 元素表示任务的进度。
访问 Progress 对象
您可以通过使用 getElementById()
来访问 <progress>
元素:
var x = document.getElementById("myProgress");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 PROGRESS 元素</h3>
下载进度:
<progress id="myProgress" value="75" max="100">
</progress>
<p>点击按钮来获得下载进度条的当前进度值。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myProgress").value;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Progress 对象
您可以通过使用 document.createElement()
方法来创建 <progress>
元素:
var x = document.createElement("PROGRESS");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 PROGRESS 元素</h3>
<p>点击按钮来创建最大值为 100 而当前值为 22 的 PROGRESS 元素。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("PROGRESS");
x.setAttribute("value", "22");
x.setAttribute("max", "100");
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Progress 对象属性
属性 | 描述 |
---|---|
labels | 返回进度条的标记列表(如有)。 |
max | 设置或返回进度条的 max 属性值。 |
position | 返回进度条的当前位置。 |
value | 设置或返回进度条的 value 属性值。 |
标准属性和事件
相关页面
HTML 参考手册:HTML <progress> 标签