(舉一些較常用的參數)
$.ajax({
type: 'GET/POST',
url: url,
cache: false,
data: data,
dataType: dataType,
success: function(data) {...},
error: function(msg) {...},
});
$.ajax({
type: 'POST',
url: 'goods.php',
data: {name: 'shoes', class: 'woman'},
success: function(msg) {
alert('Data Saved: ' + msg);
},
error: function(msg) {
alert('Failed: ' + msg);
}
});
一個簡單將一個物品儲存到檔案裡的例子
用 POST 方法,將名稱:shoes、分類:woman 的資料儲存到 good.php 的檔案裡,
若成功後跳出提醒通知使用者儲存成功;若失敗跳出提醒通知使用者儲存失敗