我想用ajax發送數據,但我得到一個語法錯誤,我不明白爲什麼... 我讀了一些相同的問題,但我仍然不明白我的錯在哪裏...語法錯誤:簡單的ajax請求
$.ajax({
type: "POST",
url: "imprime_planning",
data: {
"test": "test"
},
dataType: "JSON",
success: function(msg){
alert(msg);
console.log(msg);
},
error: function(res, status, exeption) {
alert(res);
console.log(exeption);
}
});
感謝您的專家眼睛!
編輯: 了「的SyntaxError」在誤差函數的異常中給定
你在哪裏得到語法錯誤?哪一行號碼 – DaveHogan
而且在代碼中看不到任何語法錯誤。 –
什麼是語法錯誤...發佈那些錯誤... – Hariharan