浏览器地址url截取参数的完美工具方法(正则,好用)
2020-04-26 本文已影响0人
邓男子
//weibo.com/props?age=12&salary=20000
function getQueryString(key){
var reg = new RegExp("(^|&)"+key+"=([^&]*)(&|$)");
var result = window.location.search.substr(1).match(reg);
return result?decodeURIComponent(result[2]):null;
}