<html>
<body>
<p>Peter 的分数: <meter id="myMeter" min="0" low="40" high="75" max="100" value="65"></meter></p>
<p>点击按钮改变上面度量的 max 属性的值。</p>
<p id="demo"></p>
<button onclick="myFunction()">尝试一下</button>
<p><b>注意:</b>Internet Explorer 和 Safari 5(及其之前的版本)不支持 max 属性。</p>
<script>
function myFunction()
{
document.getElementById("myMeter").max="80";
document.getElementById("demo").innerHTML="max 属性的值从 '100' 变为 '80'。";
}
</script>
</body>
</html>