再次在这里 jQuery 是你的好朋友
我已经使用 jsfiddle在您的数据行中发布了一个包含多条记录的示例
$(document).ready(function () {
var result = {
"row": [
{
"id": "5",
"name": "test",
"email": "test@test.com",
"street": "mystreet",
"city": "mycity",
"state": "mystate",
"zipcode": "123456",
"myimage": "image.gif"
},
{
"id": "10",
"name": "test2",
"email": "test2@test.com",
"street": "mystreet2",
"city": "mycity2",
"state": "mystate2",
"zipcode": "7891011",
"myimage": "image.gif"
}
]
};
var oE = $("#output");
$.each(result.row, function(index, value) {
//- extract target value like zipCode
oE.append($("<li></li>").text(value.zipcode));
});
});
希望这可以帮助。