<html>
<body>
下载进度条:
<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>
</body>
</html>