URL 파라미터 match() window.onload = function () { const thisLocation = window.location.href; if (thisLocation.match('index.php')) { //index파일에서 적용시킬 것 } else { //서브페이지에 적용시킬 것 }; }; match()에 따로 지정해주면 된다 🕹 스크립트 2022.03.06