ajax json返回Error
前台代码如下:
$.ajax(
{
type: "POST",
url: "Top.aspx",
data: { cmd: "Relate_Display_Data", LeaveType: "1" },
async: false,
dataType: "json",
success: function(data) {
alert('success');
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert('fail');
}
}
);
后台代码:
if (Request["cmd"]!=null)
{
Response.Write("[{\"demoData\":\"This Is The JSON Data\"}]");
}
我对json不太熟,为什么我返回总是执行Error方法。json需要引用什么吗?
跟Jquery有关吗?jquey我之前引用的是jquery-1.7.2.min.js,后来改成了jquery-1.4.1.min.js也不行