首页 > 编程 > JavaScript > 正文

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

2019-11-20 08:37:53
字体:
来源:转载
供稿:网友

如下所示:

$.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后台返回list,前台用jquery遍历list的实现全部内容了,希望大家多多支持武林网~

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表