xmlhttp.responseText这是返回的一个集合 在js中如何编写代码遍历这个集合把数据显示在jsp上啊?

2024-11-06 11:29:02
推荐回答(1个)
回答(1):

通过JSON方式返回数据,然后在success中遍历数据。操作json
$.ajax({
type: 'post',
url: "maintain_findRoomByBuildingId.shtml",
cache: false,
data: {"buildingId":buildingId},
dataType: 'json',
success: function(data){
jQuery.each(data.roomList, function(i,item){
alert(item.id+","+item.name);
});
},
error: function(){
return;
}
});