//获取url参数
function GetQueryString(sProp) {
var re = new RegExp("[&,?]" + sProp + "=([^&]*)", "i");
var a = re.exec(document.location.search);
if (a == null)
return "";
return a[1];
}
转载于:https://www.cnblogs.com/tong775131501/p/4107497.html
6779

被折叠的 条评论
为什么被折叠?



