본문 바로가기

Web/JS+jQuery

[Error 해결] Error: 'document' is not defined

반응형

편집기로 브라켓(Brackets)을 사용하는데, javascript로 파일을 만들고 코드를 작성하니까 다음과 같이 에러와 경고가 떴다. 물론 구현하는데 문제가 되는 것 같진 않았지만, 거슬리니까 없애주는 게 좋을 것 같다.

 

ERROR: 'document' is not defined. 

document.write can be a form of eval.

 

 

 

 

해결책은 생각보다 간단했다. 확장기능관리자에 들어가서 (오른쪽 벽돌 모양) Default 에서 ESLint와 JSLint를 비활성화해주면 된다. 

 

그런데 이렇게 했을 때 됐다, 안됐다 하는 문제가 발생했다.

 

 

이땐 상단에 

/*eslint-env browser */

를 넣어서 해결했다.

 

[참고]

https://stackoverflow.com/questions/46841788/document-is-not-defined-javascript-error

 

document is not defined javascript error

I have finished a project and it runs perfectly.I keep getting error notifications that 'document' is not defined. I have the same notification every time I address the document. Is there a way I can

stackoverflow.com

 

반응형

'Web > JS+jQuery' 카테고리의 다른 글

[Javascript] 콘솔 로그가 바로 사라지는 문제  (0) 2021.05.25
[JavaScript] 구구단 출력하기  (0) 2021.05.21