重定向到其他窗口JS

时间:2012-05-28 06:50:52

标签: javascript asp.net html

我在JS重定向时遇到问题。 情况如下: html代码的当前目录是:http://localhost:7927/MyWeb/Catch%20the%20bird%20game/GAME1.html

我想将目录更改为

'http://localhost:7927/MyWeb/games.htm'

我尝试使用window.location(“games.htm”);但它会重定向到该目录:

http://localhost:7927/MyWeb/Catch%20the%20bird%20game/GAME1.html/games.htm

解决方案是什么?感谢。

4 个答案:

答案 0 :(得分:1)

您可以尝试:

window.location("../games.htm");

或:

window.location("/MyWeb/games.htm");

答案 1 :(得分:0)

你应该使用

window.location.href = "/myweb/games.htm"

答案 2 :(得分:0)

使用

window.location = 'http://localhost:7927/MyWeb/games.htm';

或只是这个

window.location = '/MyWeb/games.htm';

答案 3 :(得分:0)

我通常使用

window.location.href = ...

window.location.replace(...);

另请查看此SO post