function getUrlParam(name) {
? ? ? ? ? ? ? ? ? ? var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
? ? ? ? ? ? ? ? ? ? var r = window.location.search.substr(1).match(reg);
? ? ? ? ? ? ? ? ? ? if (r != null) return unescape(r[2]); return null;
? ? }
?getUrlParam('id')
高級(jí)穩(wěn)定版*中文地址欄傳參數(shù)
function?getUrlParam(key)?{
????//?獲取參數(shù)
????var?url?=?window.location.search;
????//?正則篩選地址欄
????var?reg?=?new?RegExp("(^|&)"?+?key?+?"=([^&]*)(&|$)");
????//?匹配目標(biāo)參數(shù)
????var?result?=?url.substr(1).match(reg);
????//返回參數(shù)值
????return?result???decodeURIComponent(result[2])?:?null;
}
例如:http://localhost/help/collection/template/question.html?class=1&id=1-2-3-4
打印結(jié)果:1-2-3-4