HTML DOM Meter 对象
JavaScript基础 2022-05-13 16:21:38小码哥的IT人生shichen
HTML DOM Meter 对象
Meter 对象
Meter 对象是 HTML5 中的新对象。
Meter 对象表示 HTML <meter>
元素。
访问 Meter 对象
您可以通过使用 getElementById()
来访问 <meter>
元素:
var x = document.getElementById("myMeter");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 METER 元素</h3>
<p>小明的分数:<meter id="myMeter" min="0" low="40" high="95" max="100" value="65"></meter></p>
<p>点击按钮来获得以上度量的当前“被测量”值。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<p><b>注释:</b>Internet Explorer 以及 Safari 5(以及更早的版本)不支持 value 属性。</p>
<script>
function myFunction()
{
var x = document.getElementById("myMeter").value;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Meter 对象
您可以通过使用 document.createElement()
方法来创建 <meter>
元素:
var x = document.createElement("METER");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 METER 元素</h3>
<p>点击按钮来创建包含指定值的 METER 元素。</p>
<button onclick="myFunction()">试一下</button>
<p><b>注释:</b>Internet Explorer 以及 Safari 5(以及更早的版本)不支持 value 属性。</p>
<script>
function myFunction()
{
var x = document.createElement("METER");
x.setAttribute("min", "0");
x.setAttribute("max", "100");
x.setAttribute("value", "65");
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Meter 对象属性
属性 | 描述 |
---|---|
high | 设置或返回 gauge 中 high 属性的值。 |
labels | 返回属于 gauge 标记的 <label> 元素列表。 |
low | 设置或返回 gauge 中 low 属性的值。 |
max | 设置或返回 gauge 中 max 属性的值。 |
min | 设置或返回 gauge 中 min 属性的值。 |
optimum | 设置或返回 gauge 中 optimum 属性的值。 |
value | 设置或返回 gauge 中 value 属性的值。 |
标准属性和事件
相关页面
HTML 参考手册:HTML <meter> 标签