欢迎来到福编程网,本站提供各种互联网专业知识!

js计数器代码

发布时间:2006-11-04 作者: 来源:转载
复制代码代码如下:varseconds=10;//记数时间varhandle;//事件柄//开始记数器functionstartTimer(){handle=setInterval("timer()",1000);}//结束记数器functionstopTimer(){clearInterval(handle);seconds=10;document.all.redhacker.innerHTML=
复制代码 代码如下:
varseconds=10;//记数时间
varhandle;//事件柄

//开始记数器
functionstartTimer(){
handle=setInterval("timer()",1000);
}

//结束记数器
functionstopTimer(){
clearInterval(handle);
seconds=10;
document.all.redhacker.innerHTML="10秒钟倒计时完成";
}

//计数器
functiontimer(){
seconds-=1;
document.all.redhacker.innerHTML="您还有"+seconds+"秒";
if(seconds==0){
stopTimer();
document.reTranForm.submit();
}
}

//1秒后显示计数器
setTimeout("startTimer()",1000);


相关推荐