欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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

程序员文章站 2022-03-17 23:27:12
...
如下所示:
   
$.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; 
    } 
  });
相关标签: jquery ajax