程式碼如下
$.ajax({
type: "POST",
url: "change.jsp",
data: {
screenlayout: $("#screenlayout").val(), template:
$("#template").val()
},
success: function(response){
alert(response);
},
error: function(xhr, ajaxOptions, thrownError){
alert("error"+xhr.status);
alert(thrownError.Error);
}
});
此事件是當我按下按鈕會觸發
但都是出現error錯誤:500 undefined
跟網路上範例都一樣不知道為什麼一直錯誤 我也不知道沒定義到了甚麼
煩請高手解惑