我知道如何更改为新窗口并且我这样做:
window.replace(myURL);
然而,当我把“home.html”
时它没有做任何事情如何让它进入我的新页面?
答案 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")