[js] 특정 주소에서 html 에 class 추가하기
if ( window.location.pathname == '/' ) { var root = document.documentElement; root.className += ' index'; } wondow.location.pathname에 지정된 경로의 URL로 접속 할 경우 index라는 class를 html에...
if ( window.location.pathname == '/' ) { var root = document.documentElement; root.className += ' index'; } wondow.location.pathname에 지정된 경로의 URL로 접속 할 경우 index라는 class를 html에...