自己用js写了一个计时器,原理就是先10秒钟倒计时到0的时候再自动倒计时5秒结束后又跳回倒计时10秒循环
发布网友
发布时间:2022-04-21 01:19
我来回答
共1个回答
热心网友
时间:2023-11-01 11:09
我简单写了个 你看看
<html>
<head></head>
<body onload="time()">
<script type="text/javascript">
var count = 11;
function time(){
count--;
if(count <= 0){
count = 6;
time1();
return;
}
document.getElementById('msg').innerHTML = '购买倒计时还剩0分'+count+'秒';
setTimeout(time,1000);
}
function time1(){
count --;
if(count <= 0){
count = 11;
time();
return;
}
document.getElementById('msg').innerHTML = '付款倒计时还剩0分'+count+'秒';
setTimeout(time1,1000);
}
</script>
<div id="msg"></div>
</body>
追问很感谢你的帮助,不过你的代码是不能显示出来的