这是 JSON 字符串的示例:
{
"table": {
"tfoot": "Footer",
"tr0": [
{
"form": "formData",
"td": "Content"
}
]
}
}
以及我用来解析它的 jQuery 代码:
$.ajax({
type: 'GET',
url: source,
dataType: 'json',
success: function (data) {
$.each(data, function() {
$.each(this, function(key, value) {
switch (key) {
case "tfoot":
alert(value) // access to this node works fine
break;
default:
alert(value.td) // this is undefined
break;
}
});
});
}
});
我用 Chrome 尝试了 Console.log,我可以看到每个节点并且数据没问题。任何人都知道我如何访问“form”或“td”节点?