js 实现定时页面跳转
{
var time = t;
time -= 1;
document.getElementById("time").value = time;
if(time==0)
{
window.parent.location.href = "http://www.baidu.com";
}
if(time != 0)
{
setTimeout(function() {show_time(time)},1000);
}
}
调用方法: <input type=text id=time>
<input type=button value="点击后10s定时跳转" onclick=show_time(10)>
注意:1.setTimeout()调用时,如果调用的函数没有参数,直接调用setTimeout(show_time(),1000);
如果调用的函数带有参数,则应该:setTimeout(function() {show_time(time),1000});
2.如果是在子窗体上操作子窗体,则跳转时:window.location.href="...";
如果是子窗体操父窗体,则跳转时需要加parent,即:window.parent.location.href="...";
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。