Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <meter> 标签


示例

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

<label for="disk_c">磁盘使用情况 C:</label>
<meter id="disk_c" value="2" min="0" max="10">2 out of 10</meter><br>

<label for="disk_d">磁盘使用情况 D:</label>
<meter id="disk_d" value="0.6">60%</meter>
自己尝试一下 »

定义和用法

The <meter> 标签定义了已知范围内的一个标量测量,或者是一个分数。这也称为仪表。

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

注意: <meter> 标签不应用于指示进度(如进度条)。对于进度条,请使用 <progress> 标签。

提示: 为了最佳的可访问性实践,始终添加 <label> 标签!


浏览器支持

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

元素
<meter> 8.0 13.0 16.0 6.0 11.5


属性

属性 描述
form form_id 指定 <meter> 元素所属的表单
high 数字 指定被认为是高值的范围
low 数字 指定被认为是低值的范围
max 数字 指定范围的最大值
min 数字 指定范围的最小值。默认值为 0
optimum 数字 指定仪表的最优值
value 数字 必需。指定仪表的当前值

全局属性

The <meter> 标签也支持 HTML 中的全局属性.


事件属性

The <meter> 标签也支持 HTML 中的事件属性.


相关页面

HTML DOM 参考:Meter 对象


默认 CSS 设置

无。


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.