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

60秒倒计时,自动跳转到指定页面

时间:2015-04-21 17:43:50      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript" charset="utf-8">
//设定倒数秒数 
var t = 60; 
//显示倒数秒数 
function showTime(){ 
t -= 1; 
document.getElementById(‘jumpTo‘).innerHTML= t; 
if(t==0){ 
location.href=‘http://www.baidu.com‘; 
} 
//每秒执行一次,showTime() 
setTimeout("showTime()",1000); 
} 

//执行showTime() 
showTime(); 
</script>

 

60秒倒计时,自动跳转到指定页面

标签:

原文地址:http://www.cnblogs.com/q460021417/p/4444714.html

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