🕹 스크립트

URL 파라미터 match()

(。θᗨθ。) 2022. 3. 6. 23:54
window.onload = function () {
  const thisLocation = window.location.href;
  if (thisLocation.match('index.php')) {
	    //index파일에서 적용시킬 것
  } else {
     //서브페이지에 적용시킬 것
  };
};

match()에 따로 지정해주면 된다

728x90