首页 > 代码库 > HTML5进度条progress的使用

HTML5进度条progress的使用

HTML5进度条progress的使用

<!DOCTYPE html><html> <head>    <meta charset="utf-8" />    <title> progress元素的使用</title></head><p id="pTip">开始下载</p><progress value="http://www.mamicode.com/0" max="100" id="proDownFile"></progress><input type="button" value="http://www.mamicode.com/下载" onclick="Btn_Click();"><script type="text/javascript">    var intValue=http://www.mamicode.com/0;"下载完成";        }else{            objTip.innerHTML="正在下载"+intValue+"%";        }    }    function Btn_Click(){        intTimer=setInterval(Interval_handler,100);    }</script></body></html>

  

HTML5进度条progress的使用