본문 바로가기
  • search_ _ _ _
  • search_ _ _ _
  • search_ _ _ _
JavaScript &jQuery

[JavaScript] Cannot read properties of null

by 오늘의갈비찜 2024. 7. 4.
728x90

 

 

로컬에서 잘 되던 JavaScript가 lwc에서 에러가 났다...

 

 

에러 :  Cannot read properties of null (reading 'classList')

 

찾아보니 우선순위의 문제라고 한다.

 

 

 

*** 해결방법

 

const visualActive = document.querySelector('.visual');

 

에서

 

const visualActive = document.documentElement.querySelector('.visual');

 

 

 

document.documentElement = 최상위 html을 가리킨다.

좀더 명확?하게 dom을 호출 할 수있게 된다.

 

728x90