赞
踩
function btn(){
//for(var i= 0; i<=100;i++){
// setTimeout(function(){
// updateprogress(i);
// },2000)
//}
var i = 0;
function thread_one(){
if(i <= 100){
i++;
updateprogress(i);
}
}
setInterval(thread_one,100);
}
function updateprogress(newValue){
var progressBar = document.getElementByID("p")
progressBar.value = newValue;
progressBar.getElementsByTagName("span")[0].textContent = newValue;
}
完成百分比0%
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。