HTML DOM Progress 对象
Progress 对象
Progress 对象是 HTML5 中的新对象。
Progress 对象表示 HTML <progress> 元素。
<progress> 元素表示任务的进度。
访问 Progress 对象
您可以通过使用 getElementById() 来访问 <progress> 元素:
var x = document.getElementById("myProgress");
创建 Progress 对象
您可以通过使用 document.createElement() 方法来创建 <progress> 元素:
var x = document.createElement("PROGRESS");
Progress 对象属性
属性 | 描述 |
---|---|
labels | 返回进度条的标记列表(如有)。 |
max | 设置或返回进度条的 max 属性值。 |
position | 返回进度条的当前位置。 |
value | 设置或返回进度条的 value 属性值。 |
标准属性和事件
相关页面
HTML 参考手册:HTML <progress> 标签