<script type="text/javascript">
//定义倒计时时间
var times = 20;
//定义跳转地址
var redirecturl = "http://www.cnblogs.com/xxxx.aspx";
//执行倒计时函数
var doCountDown = function(){
//alert("aaa");
if(times == 0){
//倒计时结束
location.href = redirecturl;
}
//显示当前倒计数
document.getElementById("countDown").innerHTML = times;
//alert("aaa");
times --;
}
//显示跳转信息
document.getElementById("autoRedirect").style.display="";
//执行倒计时
doCountDown();
//设置倒计时的时间间隔
setInterval("doCountDown();",1000);
</script>
html部分代码:
<p id="autoRedirect" style="display:none;" >
请不要关闭、改变或刷新页面,系统将在
<span id="countDown" style="margin:0 10px 0 0;font-size:16px;color:red;font-weight:bold;"></span>
自动启动考试,请稍候...
</p>
</script>