更改为新页面(不是http://asdasd.com,我自己的页面) - javascript

时间:2013-07-18 12:04:48

标签: javascript redirect

我知道如何更改为新窗口并且我这样做:

window.replace(myURL);

然而,当我把“home.html”

时它没有做任何事情

如何让它进入我的新页面?

3 个答案:

答案 0 :(得分:1)

你为什么不用:

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

答案 1 :(得分:1)

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

答案 2 :(得分:1)

这将打开一个新页面

window.open("home.html") 

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

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

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

window.location.assign("home.html")