에러

Uncaught ReferenceError: $ is not defined

integerJI 2020. 7. 13. 23:42

$가 실행이 안되는건 여러가지 이유가 있어서 입니다.

 

1. jquery 호출 순서가 뒤에있을때

 

2. jquery를 호출 안해줄때

 

    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>

 

저는 해당 소스를 head에 넣어주니 해결 되었습니다.

 

 

 

1번 참고

http://blog.naver.com/PostView.nhn?blogId=blacklotuz&logNo=221371811978

 

uncaught referenceerror $ is not defined

제이쿼리를 사용하다보면 간혹 이런 에러가 나올떄 있다. uncaught referenceerror $ is not defined 필자...

blog.naver.com

 

2번 참고

https://hashcode.co.kr/questions/4387/uncaught-referenceerror-is-not-defined-%EC%97%90%EB%9F%AC-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95

 

uncaught referenceerror $ is not defined 에러 해결 방법

코드를 실행시키면 $("#search").autocomplete 라인에 'uncaught referenceerror $ is not defined' 에러가 발생합니다. 에러의 이유가 jquery가 로드되지 않았기 때문인 것으로 알고 있는데 어떤 문제가 있는지 궁금�

hashcode.co.kr