//设定倒数秒数
var t =5;
//显示倒数秒数
function showTime(){
t -= 1;
document.getElementById('time').innerHTML= t;
if(t==0){
location.href='http://www.bszxedu.com';
}
//每秒执行一次,showTime()
setTimeout("showTime()",1000);
}
//执行showTime()
showTime();