目录

HTML DOM progress 对象


进度对象

Progress 对象表示 HTML <progress> 元素。

<progress> 元素表示任务的进度。

访问进度对象

您可以使用 getElementById() 访问 <progress> 元素:

示例

var x = document.getElementById("myProgress");
亲自试一试 »

创建进度对象

您可以使用 document.createElement() 方法创建 <progress> 元素:

示例

var x = document.createElement("PROGRESS");
亲自试一试 »

进度对象属性

Property Description
labels Returns a list of the progress bar's labels (if any)
max Sets or returns the value of the max attribute of a progress bar
position Returns the current position of the progress bar
value Sets or returns the value of the value attribute of a progress bar

标准属性和事件

Progress 对象也支持标准特性事件


相关页面

HTML 参考:HTML <进度> 标签