简单教程
提交运行
代码编辑器:
下载进度条: <progress id="myProgress" value="22" max="100"> </progress> <p>点击按钮修改稿进度条的 max 属性为 "50"</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("myProgress").max="50"; } </script>
运行结果: