美文网首页
获取链接中指定参数的值

获取链接中指定参数的值

作者: 小蜗牛的碎碎步 | 来源:发表于2017-10-23 14:44 被阅读0次
    getUrlArgs(){
          let qs = location.search.length > 0 ? location.search.substring(1) : "",
              args = {},
              items = qs.length ? qs.split("&") : [],
              item = null,
              name = null,
              value = null,
              i = 0,
              len = items.length;
              for(i;i<len;i++){
                  item = items[i].split("=");
                  name = decodeURIComponent(item[0]);//解码
                  value = decodeURIComponent(item[1]);
                  args[name] = value;
                }
                return args;
            }
    

    相关文章

      网友评论

          本文标题:获取链接中指定参数的值

          本文链接:https://www.haomeiwen.com/subject/qflauxtx.html