目录

HTML DOM meter 对象


仪表对象

Meter 对象表示 HTML <meter> 元素。

笔记:Internet Explorer / Edge 或 Safari 5(及更早版本)不支持 <meter> 元素。

访问仪表对象

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

示例

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

创建一个仪表对象

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

示例

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

仪表对象属性

Property Description
high Sets or returns the value of the high attribute in a gauge
labels Returns a list of <label> elements that are labels for the gauge
low Sets or returns the value of the low attribute in a gauge
max Sets or returns the value of the max attribute in a gauge
min Sets or returns the value of the min attribute in a gauge
optimum Sets or returns the value of the optimum attribute in a gauge
value Sets or returns the value of the value attribute in a gauge

标准属性和事件

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


相关页面

HTML 参考:HTML <meter> 标签