1

在 javascript 中,如何在不知道自己在哪里的情况下转到特定的 url?

例如,我可能在

  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

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

4

1 回答 1

0

/在开始时尝试,没有document.domain

window.location.href = "/go_here"
于 2013-08-01T05:25:34.433 回答