可能重复:
如何在 JSON 对象上循环?
我试图找出如何遍历 JSON obj 的属性。我可以通过指定键来获取属性(见下文),但是我如何循环遍历所有属性?
var jsonStr = '{"Items":[{"Title": "Title 1", "Description":"Description 1"}]}';
var json_parsed = $.parseJSON(jsonStr);
// Cycle through all list items
$.each(json_parsed.Items, function(i, val) {
var listItem = $(this);
var title = listItem.attr('Title');
var description = listItem.attr('Description');
// Instead, loop through all attributes
}