Menu Close

[Javascript] Uncaught TypeError: $.ajax is not a function

Considering donating if you found my post helpful ๐Ÿ˜Š

Buy Me a Coffee QR Code

Saya mendapat ralat ini apabila cuba menggunakan ajax.

Uncaught TypeError: $.ajax is not a function
    at HTMLButtonElement. ((index):40)
    at HTMLButtonElement.dispatch (jquery-3.3.1.slim.min.js:2)
    at HTMLButtonElement.v.handle (jquery-3.3.1.slim.min.js:2)

Kod yang saya gunakan adalah seperti berikut

$.ajax({
  type: "POST",
  url: "process.php",
  data: {urls:urls},
  dataType: "json",
  success: function(data){
    alert("success");
  }
});

Masalah ini berpunca daripada versi jQuery yang saya gunakan. Saya menggunakan versi slim di mana fungsi ajax telah dibuang.
Penyelesaiannya adalah menggunakan versi full.

Considering donating if you found my post helpful ๐Ÿ˜Š

Buy Me a Coffee QR Code
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x