x
 
<!DOCTYPE html>
<html>
<body>
下载进度:
<progress id="myProgress" value="20" max="100">
</progress>
<p>点击按钮可返回进度条的 max 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myProgress").max;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>