url 경로 정보 가 져 오기

446 단어 js

http://localhost:3001/?id=123&type=456#/



  getQueryName = (name) => {
    var result = (window.location.search || window.location.href).match(new RegExp("[\?\&]" + name + "=([^\&]+)", "i"));
    if (result == null || result.length < 1) {
      return "";
    }
    return decodeURIComponent(result[1]);
  }

this.getQueryName(id) // 123
this.getQueryName(type) // 456

좋은 웹페이지 즐겨찾기