封装方法
//获取url参数
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; // 返回参数值
};
在需要使用的地方
//eg 网址为:xxx.com/a.html?code='0001'
var code = getUrlParam("code")
console.log(code) // 0001