Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可创建具有指定值的 METER 元素。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b> Internet Explorer 和 Safari 5(及更早版本)不支持 meter 对象。</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>