2013-08-01 45 views
1

在JavaScript中,我怎麼去特定的URL而不知道我在哪裏?Javascript,去url不知道我在什麼頁面級別

例如,我可能會在

www.mysite.com/level1/level2 
    www.mysite.com/level1 

我想去:

www.mysite.com/go_here 

我想:

window.location.href = document.domain + "/go_here/"; 

但是標籤域和go_here到以前的網址:

www.mysite.com/level1/www.mysite.com/go_here 

通常,我會使用../,但我不知道要返回多少個關卡。

回答

0

嘗試/之初,沒有document.domain

window.location.href = "/go_here" 
+0

完美!謝謝。 – user984003

+0

@ user984003太棒了,歡迎您! – Cherniv

相關問題