0

我知道如何切换到一个新窗口,我这样做是这样的:

window.replace(myURL);

但是,当我输入“home.html”时它什么也没做

我怎样才能让它进入我的新页面?

4

3 回答 3

1

你为什么不使用:

window.location.replace("home.html");
于 2013-07-18T12:07:30.673 回答
1

window.location.replace("home.html");

于 2013-07-18T12:07:37.030 回答
1

这将打开一个新页面

window.open("home.html") 

这将导致在同一窗口中加载新页面

window.location.href="home.html"; 

您也可以使用分配来加载新文档。

window.location.assign("home.html")
于 2013-07-18T12:08:27.190 回答