首页 > 代码库 > location对象-解析URL查询字符串参数

location对象-解析URL查询字符串参数

 function getQueryStringArgs(){
    var qs=(location.search.length>0?location.search.substring(1):""),
          args={}, 
          items=qs.length?qs.split("&"):[],
          item=null,name=null,value=http://www.mamicode.com/null,i=0;
   for(i=0;i<items.length;i++){
       item=items[i].split("=");
       name=decodeURIComponent(item[0]);
       value=http://www.mamicode.com/decodeURIComponent(item[1]);
       if(name.length){
           args[name]=value;
       }
   }
   return args;        
 }

 重新加载窗口方法:location.reload();//可能从缓存中加载

          location.reload()//从服务器重新加载

location对象-解析URL查询字符串参数