我是 jquery 的新手,想了解 response 和 response.d 之间的区别,我在故障警报中使用 response.d。
我想知道如果失败,消息框中会显示什么警报(respose.d)。
下面是我的代码
$.ajax({
type: "POST",
url:"Abc.aspx/Function1",
data: '{MonthDateID: ' + $('#<%=ddlMonth.ClientID%>').val() + '}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: Function2,
failure: function(response) {
alert(response.d);}});
如有任何疑问,请告诉我