我有一個頁面jQuery的 - 獲取URL哈希
- 最新
- 過期
- 待定
當每個標籤被激活,哈希被添加到URL在三個選項卡:
http://example.com/com/#latest
我試圖在每個選項卡上添加分頁。所以我想這樣做是這樣的:
http://example.com/com/#latest?p=5
但我不知道如何通過自身獲得的哈希值。使用$(location).attr('hash')
回報#latest?p=5
if($(location).attr('hash')) {
var tab = $(location).attr('hash');
}else{
var tab = "#latest";
}
嗨。如果我直接訪問'http:// example.com/com /#latest',我只會得到一個'#' – Ciprian 2015-04-03 09:21:51
更新我的答案 – user3896501 2015-04-03 11:04:07