상황
이클립스에서 jsp 파일 실행 후 개발자 모드에서 Uncaught ReferenceError: jQuery is not defined 에러 발생
해결방법
해당 jsp 파일 <head>에 jquery 정의해주기
ex)
<head>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="<c:url value='/js/custom.js'/>" charset="utf-8"></script>
</head>
'ERROR RESOLVING' 카테고리의 다른 글
오류 class java.lang.String cannot be cast to class (0) | 2023.01.21 |
---|---|
오류 Unhandled exception type IOException (0) | 2023.01.05 |
오류 부적합한 열 유형: 1111 (0) | 2023.01.01 |
오류 sts3 프로젝트 생성 (0) | 2022.11.23 |
오류 eclipse tomcat버전 변경 시 class compile (0) | 2022.10.30 |