可能重複的URL變量:
How can I get query string values?獲得使用JS
我有這個鏈接
網址/ merchant.html ID = 45
我我試圖使用JS或JQuery來獲取ID,但沒有運氣。
我想這個代碼
var urlParams = {};
(function() {
var match,
pl = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g,
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
query = window.location.search.substring(1);
while (match = search.exec(query))
urlParams[decode(match[1])] = decode(match[2]);
})();
返回 「未定義」
什麼是代碼中的問題?
'document.location.href'? – marekful
不返回ID –
你的代碼只是在FF linux中爲我工作,沒有任何修改... – marekful