程式码如下
$.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
跟网络上范例都一样不知道为什么一直错误 我也不知道没定义到了什么
烦请高手解惑