JS获取URL中的GET参数
方法一;functiongetLocationVal(id){vartemp=location.search.split(id+"=")[1]||"";returntemp.indexOf("&")>=0?temp.split("&")[0]:temp;}
方法二;;
function getArgs(){
var args = {};
var match = null;
var search = decodeURIComponent(location.search.substring(1));
var reg = /(?:([^&]+)=([^&]+))/g;
while((match = reg.exec(search))!==null){
args[match[1]] = match[2];
}
return args;
}
getArgs();
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。