Json动态数据不适用于Jquery响应

时间:2013-03-20 16:51:29

标签: jquery json

这是代码http://jsfiddle.net/gR2y4/

但是当我尝试这不起作用时。

$.ajax({ type: "POST", url: "xx.aspx" }).done(function (response) {
var resp = response;
alert(resp._TypingUserList[0].UserNick);
});
谢谢你的努力。

2 个答案:

答案 0 :(得分:0)

实际数据在response.d这是ASP.NET响应您的AJAX调用的方式。见this link

答案 1 :(得分:0)

Ajax调用需要返回数据类型为json,

添加数据类型修复了问题。

$.ajax({ type: "POST",dataType: "json", url: "xx.aspx" }).done(function (response) {
var resp = response;
alert(resp._TypingUserList[0].UserNick);
});