HTML <meter> 标签


示例

使用meter元素显示给定范围内的标量值(仪表):

<label for="disk_c">Disk usage C:</label>
<meter id="disk_c" value="2" min="0" max="10">2 out of 10</meter><br>

<label for="disk_d">Disk usage D:</label>
<meter id="disk_d" value="0.6">60%</meter>
亲自试一试 »

定义和用法

这个<meter>标签定义已知范围内的标量测量值或小数值。这也称为量规。

示例:磁盘使用情况、查询结果的相关性等。

笔记:这个<meter>标签不应用于指示进度(如在进度条中)。对于进度条,请使用<进度>标签。

提示:始终添加<标签>标签以获得最佳可访问性实践!


浏览器支持

表中的数字指定完全支持该元素的第一个浏览器版本。

Element
<meter> 8.0 13.0 16.0 6.0 11.5


属性

Attribute Value Description
form form_id Specifies which form the <meter> element belongs to
high number Specifies the range that is considered to be a high value
low number Specifies the range that is considered to be a low value
max number Specifies the maximum value of the range
min number Specifies the minimum value of the range. Default value is 0
optimum number Specifies what value is the optimal value for the gauge
value number Required. Specifies the current value of the gauge

全局属性

这个<meter>标签还支持HTML 中的全局属性


事件属性

这个<meter>标签还支持HTML 中的事件属性


相关页面

HTML DOM 参考:仪表对象


默认 CSS 设置

没有任何。