码迷,mamicode.com
首页 > 其他好文 > 详细

倒计时

时间:2016-12-30 17:22:38      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:cti   url   htm   attribute   cat   count   window   int   oca   

window.onload = function () {
var countdown = 5;
setInterval(function () {
if (countdown >= 0) {
document.getElementById(‘settime‘).innerHTML = countdown;
countdown--;
} else {
clearInterval();
window.location.href = document.getElementById(‘jumpUrl‘).getAttribute(‘href‘);
}
}, 1000)
}

倒计时

标签:cti   url   htm   attribute   cat   count   window   int   oca   

原文地址:http://www.cnblogs.com/myclovers/p/6237355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!