參數設定
$.ajax({
url:'target.php', //目標位置
type:'post', //傳送型式 post/get
data:{name1:data1, name2:data2}, //傳送資料
async:false, //同步請求, default 為true(即原本是不同步)
tradition: true, //傳送array data時需設定
cache:true, //如果一直抓到舊資料 可設定成false
error:function(xhr){ //失敗時的動作
alert("fail");
},
success:function(result){ //成功時的動作 result是回傳資料
alert("success");
}
});