我知道如何去鏈接/ URL /地址等;如何去同一個服務器的URL沒有設置完整的URL地址 - 的JavaScript(有/無)jQuery的
window.location = "www.example.com/index.html";
或
document.location.href="www.example.com/index.html";
但是假設我想從index1.html
到index2.html
導航,我怎麼能做到這一點,而不提供www.example.com/
前綴?請不要建議我在全局變量/常量中設置www.example.com/
。地址可能會更改爲www.example2.com/subfolder1/subfolder2/
到www.examplea.com/
....所提到的方法只適用於根頁面的情況。我的意思是,提供document.location.href="index.html";
將瀏覽器導航到rootdomain/index.html
,即使我住在rootdomain/section1/section2/somepage.html
。但我想轉到rootdomain/section1/section2/index.html
我如何通過只提供頁面名稱實現這一目標?
在此先感謝... :)
@Xymostech我在jQuery –