1. 程式人生 > >javaScript實現URL引數解析

javaScript實現URL引數解析

比較常用的url解析的程式碼,正則表示式檢索實現匹配引數,(邊學習邊總結)
例如:解析url中的引數-----------?id=12345&a=b
返回值:Object {id:12345, a:b}

function urlParse() {
  let url = window.location.search;
  let obj = {};
  let reg = /[?&][^?&]+=[^?&]+/g;
  let arr = url.match(reg);
  // ['?id=12345', '&a=b']
  if (arr) {
    arr.forEach((item) => {
      let temArr = item.substring(1).split('=');
      let key = decodeURIComponent(temArr[0]);
      let value = decodeURIComponent(temArr[1]);
      obj[key] = value;
    });
  }
  return obj;
};