[DEV] 기록

[jQuery] $.ajax is not a function

꾸준함. 2022. 4. 3. 03:15

개요

ajax를 이용하여 POST 요청을 하려고 하는데 아래와 같은 에러 메시지가 console에 찍혀있었습니다.

$.ajax is not a function

 

원인

cdn에서 jquery slim 버전을 사용할 경우 ajaxSend와 ajax를 지원하지 않습니다.

 

해결 방법

cdn에서 slim이 아닌 버전을 사용하면 해결 완료

<script src="https://code.jquery.com/jquery-3.5.1.js"></script>

 

참고

https://stackoverflow.com/questions/18271251/typeerror-ajax-is-not-a-function

 

TypeError: $.ajax(...) is not a function?

I'm creating a simple AJAX request which returns some data from a database. Here's my function below: function AJAXrequest(url, postedData, callback) { $.ajax({ type: 'POST', ur...

stackoverflow.com

 

반응형