Javascript,转到网址,不知道我在哪个页面级别

时间:2013-08-01 05:24:50

标签: javascript

在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

通常,我会使用../但我不知道要回多少级别。

1 个答案:

答案 0 :(得分:0)

在开头尝试/,不要document.domain

window.location.href = "/go_here"