JS简单页面倒计时转跳

时间:2017-06-13
<script language="javascript">
var maxtime = 15;
function CountDown(){   
	if(maxtime>=1)
	{    
		var msg = maxtime;   
		document.getElementById("daoSec").innerHTML=msg;   
		--maxtime;   
	} else {   
		clearInterval(timer);    
		window.location.href="http://www.xrccc.com/";
	}   
}  
window.onload = CountDown; 
timer = setInterval("CountDown()",1000);
</script>
倒计时<em id="daoSec">15</em>秒

上一条:简洁的JQ实现返回顶部特效分享 下一条:jquery对单位进行换算的“笨”方法

相关文章

最新文章