首页 > 网站 > WEB开发 > 正文

JS倒计时

2024-04-27 14:09:14
字体:
来源:转载
供稿:网友
JS倒计时

//方法 function countDownTimerCallback(a) { var h = addZero(Math.floor(a / 3600)); m = addZero(Math.floor(a / 60) % 60), s = addZero(Math.floor(a) % 60); d = h + "时" + m + "分" + s + "秒"; document.getElementById("countdown").innerHTML = "时间还有" + d }

function addZero(n){ if(n < 10){ n = '0'+n; } return n; }; //倒计开始 var t = 60; var thisSetInterval = setInterval(function(){ if(t>=0){ countDownTimerCallback(t); t-- }else{ clearInterval(thisSetInterval); } },1000);

源码下载 点击下载


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表