設定或獲取物件指定的檔名或路徑。
window.location.pathname
例:http://localhost:8086/topic/index?topicid=361
alert(window.location.pathname); 則輸出:/topic/index
設定或獲取整個 url 為字串。
window.location.href
例:http://localhost:8086/topic/index?topicid=361
alert(window.location.href); 則輸出:http://localhost:8086/topic/index?topicid=361
設定或獲取與 url 關聯的埠號碼。
window.location.port
例:http://localhost:8086/topic/index?topicid=361
alert(window.location.port); 則輸出:8086
設定或獲取 url 的協議部分。
window.location.protocol
例:http://localhost:8086/topic/index?topicid=361
alert(window.location.protocol); 則輸出:http:
設定或獲取 href 屬性中在井號「#」後面的分段。
window.location.hash
設定或獲取 href 屬性中跟在問號後面的部分。
window.location.search
例:http://localhost:8086/topic/index?topicid=361
alert(window.location.search); 則輸出:?topicid=361
window.location
屬性 描述
hash 設定或獲取 href 屬性中在井號「#」後面的分段。
host 設定或獲取 location 或 url 的 hostname 和 port 號碼。
hostname 設定或獲取 location 或 url 的主機名稱部分。
href 設定或獲取整個 url 為字串。
pathname 設定或獲取物件指定的檔名或路徑。
port 設定或獲取與 url 關聯的埠號碼。
protocol 設定或獲取 url 的協議部分。
search 設定或獲取 href 屬性中跟在問號後面的部分。
附上乙個關於php中伺服器變數獲取query字串的各個引數方法:
jQuery獲取url鏈結
jquery獲取url鏈結 window.location 屬性 描述 hash 設定或獲取 href 屬性中在井號 後面的分段。host 設定或獲取 location 或 url 的 hostname 和 port 號碼。hostname 設定或獲取 location 或 url 的主機名稱部分。...
使用jquery獲取url及url引數的方法
若獲取位址http localhost 8080 index.html?id 132中的id的值,只需要,在js檔案中加入下面 為jq擴充套件方法geturlparam 便可以通過方法 geturlparam id 獲取url的資料 獲取url中的引數 function geturlparam na...
jQuery外掛程式 獲取URL引數
例如 當前你的url是 如果想獲取test,則可以引入外掛程式後,用如下方法獲取 var test query.get test 如果引數有多個相同的名稱 則可以這樣 var arr query.get testy 輸出 值1 值2,值3.如果要獲取多個相同名稱中的某乙個,可以這樣 var arra...