关于html5:vue常用工具函数Utiljs

31次阅读

共计 282 个字符,预计需要花费 1 分钟才能阅读完成。

1,获取 URL 的参数,返回一个对象

  getRequest() {
      
      const url = location.search; // 获取 url 中 "?" 符后的字串
      let theRequest = new Object();
      if (url.indexOf("?") != -1) {let str = url.substr(1);
       let strs = str.split("&");
        for (let i = 0; i < strs.length; i++) {theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
        }
      }
      return theRequest;
    }

正文完
 0