function request(paras){ 
        var url = location.href; 
        var paraString = url.substring(url.indexOf("?")+1,url.length).split("&"); 
        var paraObj = {} 
        for (i=0; j=paraString[i]; i++){ 
        	paraObj[j.substring(0,j.indexOf("=")).toLowerCase()] = j.substring(j.indexOf("=")+1,j.length); 
        } 
        var returnValue = paraObj[paras.toLowerCase()]; 
        if(typeof(returnValue)=="undefined"){ 
        	return ""; 
        }else{ 
        	return returnValue; 
        } 
}var Request = new Object();	 
Request = GetRequest();
function GetRequest() {		 
	 var url = location.search; 
	 var theRequest = new Object();		 
	 if (url.indexOf("?") != -1) {		 
	    var str = url.substr(1);		 
	    strs = str.split("&");		 
	    for(var i = 0; i < strs.length; i++) {		 
	       theRequest[strs[i].split("=")[0]]=decodeURI(strs[i].split("=")[1]);		 
	    }		 
	 }		 
	 return theRequest;		 
}
取参数值(以取“id”的值为例):Request["id"]。版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/lzgs_4/article/details/47710057