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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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=null,i=0;
   for(i=0;i<items.length;i++){
       item=items[i].split("=");
       name=decodeURIComponent(item[0]);
       value=decodeURIComponent(item[1]);
       if(name.length){
           args[name]=value;
       }
   }
   return args;        
 }

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

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

以上是关于location对象-解析URL查询字符串参数的主要内容,如果未能解决你的问题,请参考以下文章

将url的查询参数解析成字典对象

location对象查询字符串参数

逐个访问URL的每个查询字符串参数

将url的查询参数解析成字典对象

解析 location.search 对象以查找查询参数

将url的查询参数解析成字典对象