天天看点

js截取url问号?后面的参数

经常遇到通过url来传递参数的情况,那么怎样获取到对应的参数呢?楼主写个demo

楼主的项目是layer弹层,将appid,device通过url传到弹层上

//配置更新
	function configupdate(appid,device){
		layer.open({
			type:2,
			title:"配置信息",
			shadeClose:false,    //点击遮罩关闭
			area:["500px","400px"],
			content:"./view/appmanagement/configupdate.html?key="+appid+"&"+"devicetype="+device
		});
	}
           

怎样获取对应的key和devicetype的值呢

function getQueryString(){
    	var obg={},a='';
    	(a=window.location.search.substr(1))||(a=window.location.hash.split('?')[1])
    	a.split(/&/g).forEach(function(item){
        	obg[(item=item.split('='))[0]]=item[1];
    	})
    	return obg
	}
           

打印出对应的值,key和devicetype。传过来的是什么值就会得到什么值

getQueryString().key 
           
getQueryString().devicetype