window.onload = function () {
const thisLocation = window.location.href;
if (thisLocation.match('index.php')) {
//index파일에서 적용시킬 것
} else {
//서브페이지에 적용시킬 것
};
};
match()에 따로 지정해주면 된다
728x90
window.onload = function () {
const thisLocation = window.location.href;
if (thisLocation.match('index.php')) {
//index파일에서 적용시킬 것
} else {
//서브페이지에 적용시킬 것
};
};
match()에 따로 지정해주면 된다