// 页面跳转 var t=3;//设定跳转的时间 setInterval("refer()",1000); //启动1秒定时 function refer(){ if(t==0){ location.href="wenzia.html"; //#设定跳转的链接地址 } // document.getElementById('show').innerHTML=""+t+"秒后跳转到代码家园"; // 显示倒计时 t=t-1; // 计数器递减 //本文转自: console.log(t) }
// 页面跳转 var t=3;//设定跳转的时间 setInterval("refer()",1000); //启动1秒定时 function refer(){ if(t==0){ location.href="wenzia.html"; //#设定跳转的链接地址 } // document.getElementById('show').innerHTML=""+t+"秒后跳转到代码家园"; // 显示倒计时 t=t-1; // 计数器递减 //本文转自: console.log(t) }