在javascript中,如何在不知道我确切位置的情况下访问特定网址?
例如,我可能在
www.mysite.com/level1/level2
www.mysite.com/level1
我想去:
www.mysite.com/go_here
我试过了:
window.location.href = document.domain + "/go_here/";
但是这会将domain和go_here标记到上一个url:
www.mysite.com/level1/www.mysite.com/go_here
通常,我会使用../但我不知道要回多少级别。
答案 0 :(得分:0)
在开头尝试/
,不要document.domain
:
window.location.href = "/go_here"