$(function () {
$.ajax({
type: "POST",
url: "http://localhost/j.json",
data: {
"employees": [{
"firstName": "Peter",
"lastName": "Jones"
}]
},
success: function () {
alert("Data Sent");
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("Status: " + textStatus);
alert("Error: " + errorThrown);
}
});
});
エラーを取得しています。エラー ハンドラーがステータスを表示しています: parsererror の後にエラー: SyntaxError: Unexpected end of input