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