2014-09-03 45 views
0

我正在尋找JQuery庫或擴展程序,它將通過ajax加載partials,但將所有相對路徑更改爲相對於加載到的地址而不是加載的地址。使用Ajax請求保持基本url不變

我已經探索過使用iFrame,但是我正在對Google Chrome進行擴展,並且該選項由於多種限制而無法實現。使用base標籤不是一種選擇,因爲它會在整個頁面中發生變化。

+0

你可以提供你正在尋找一些例子嗎?例如頁面可能具有的URL的示例以及可能在ajax調用中使用的URL – 2014-09-04 00:37:38

回答

0

您是否正在尋找獲取頁面URL的方法,以便您可以保留基本URL並動態更改路徑?

下面將獲得這些信息

如果URL是這樣的

http://www.mywidget.com/Lets/Play/Games 


This one here will get the full URL of http://www.mywidget.com/Lets/Play/Games 
var urlHref = window.location.href; 


    This one here will get the Host Name of www.mywidget.com 
    var urlHostName = window.location.hostname; 

    This one here will return the pathname of /Lets/Play/Games 
    var urlPathName = window.location.pathname;