编辑下面的代码:【加编码】
<html> <body> 下载进度条: <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> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂