js 实现定时页面跳转

function show_time(t)
{
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="...";

js 实现定时页面跳转,布布扣,bubuko.com

js 实现定时页面跳转

上一篇:浅谈分词算法(4)基于字的分词方法(CRF)


下一篇:为女神的生日准备惊喜,我开始学习html5游戏开发 -第三天