出错找不到错
这页代码放到本机上运行也是一直跳时间,不跳转到给的网址。把assign换成window.open之后差点把谷歌运行崩了,一直都在新打开网址窗口。我要怎么改能让时间到0的时候跳到给的网址?
2017-12-30
//var n = 5;
var n=document.getElementById("seconds").innerHTML;//获取”5“赋值给n;
function showTime(){
n=n-1;
if(n==0){
window.location.assign("http://www.imooc.com/");
}
document.getElementById("seconds").innerHTML=n;//n-1后的值赋值回seconds
//setInterval("showTime()",1000)
}
//showTime();
setInterval("showTime()",1000)//每隔1秒运行一次函数体
举报