我有一个 jQuery 函数 - 这是它得到的响应
{"d":"{\"res\":\"\\u003cdiv class=\\\"accordian_head\\\"\\u003e\\u003cdiv class=\\\"plus\\\"\\u003e\\u003c/div\\u00..........."NewTags\":\"\\........
当响应只是 {"d":" response..." } 我在 jQuery 中使用 msg.d 阅读它没有问题 - 但在这里我有 "res" : "text" 嵌套在 "d" 中,那么如何我从这个响应中读取 res 吗?我试过了
success: function (msg) {
var obj = unescape(msg.d);
var res = unescape(obj.res);
var newtags = unescape(obj.NewTags);
我粘贴的示例 JSON 是 msg