这是我的json:
{"event": {
"items": [
{"position": "2", "name": "John Doe 1"},
{"position" : "1", "name": "John Doe 2"},
{"position": "3", "name": "John Does 3"}
]
}
这是我在读取 json 结果后循环遍历结果的方式:
$.each(data.event.items, function(val) {
$('#list').append('<li>'+data.event.items[val].name+'</li>');
});
现在的顺序是:John Doe 1,John Doe 2,John Doe 3。我想循环它们并按照给定位置的顺序显示它们。所以正确的顺序是 John Doe 2、John Doe 1、John Doe 3。
我怎样才能做到这一点?