function getQueryString(name) {
var
reg =
new
RegExp(
"(^|&)"
+ name +
"=([^&]*)(&|$)"
,
"i"
);
var
r = window.location.search.substr(1).match(reg);
if
(r !=
null
)
return
unescape(r[2]);
return
null
;
}
使用方法:
例子:www.baidu.com?appid=wx123123123;
console.log(getQueryString('appid'))//
输出wx123123123