Heim >Web-Frontend >js-Tutorial >JS 跳转页面延迟2种方法_javascript技巧

JS 跳转页面延迟2种方法_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:39:002018Durchsuche

方法1:

复制代码 代码如下:

");
document.getElementById("link").innerHTML=""+url+"";
$(t,url);
}
function $(t,url){
ta = t-1;
tb = t + "000";
d = document.getElementById("tt");
d.innerHTML=t;
window.setInterval(function()
{
go_to(url);
},1000);
}
function go_to(url){
d.innerHTML=ta--;
if(tadocument.write("正在跳转至:"+url+"");
location.href=url;
}
else{
return;
}
}
//-->



方法2:
复制代码 代码如下:

window.setTimeout("window.location='index.shtml'",2000);
//两秒后跳转新页面
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn