function GetQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if(r != null) return decodeURI(r[2]);
return null;
}
GetQueryString("id")
标签:null post 参数 code get ring ati log pre
function GetQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if(r != null) return decodeURI(r[2]);
return null;
}
GetQueryString("id")
标签:null post 参数 code get ring ati log pre
原文地址:https://www.cnblogs.com/xuxuxu/p/8432004.html