我想在没有用户点击html <a> reference

时间:2015-06-27 02:56:41

标签: html

I'm trying to make a program swap to a different page after finishing a for(){} loop. Any suggestions?

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

for(loop) {
    //stuff happens here;
}
window.location = "newPage.html";
javascript window.location中的

是可以更改网址的属性 所以,如果我们这样做:

window.location = "http://google.com";

然后我们将被重定向到GOOGLE。