1. 首页
  2. 区块链
  3. 比特币
  4. jquery ajax后台返回list前台用jquery遍历list的实现

jquery ajax后台返回list前台用jquery遍历list的实现

上传者: 2020-12-03 02:51:00上传 PDF文件 20.08KB 热度 22次
如下所示: $.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); }); }
用户评论