标签:
var t=10; function timer() { t--; document.getElementByIdx_x(‘div1‘).innerHTML=t; if(t==0) { alert(‘a‘) } setTimeout(‘timer()‘,1000) } timer();
倒计时多少秒后跳转
原文地址:http://www.cnblogs.com/nanianqiming/p/5445502.html