<html>
<body>
下载进度:
<progress id="myProgress" value="30" max="100">
</progress>
<p>请单击该按钮,将进度条的 max 属性的值更改为“50”。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("myProgress").max = "50";
}
</script>
</body>
</html>