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; } });
上一篇: R语言数值取消科学计数法表示的操作
下一篇: php打印输出中文乱码怎么办
推荐阅读
-
jquery ajax提交,返回list,然后遍历,刷新select
-
jquery ajax提交,返回list,然后遍历,刷新select
-
【Asp.net】使用Ajax和Jquery在前台向后台传参数并返回值的实例
-
asp.net利用Ajax和Jquery在前台向后台传参数并返回值的实例
-
asp.net利用Ajax和Jquery在前台向后台传参数并返回值的实例
-
php跳转-我用jQuery实现跳转到list.php页面,但是又想将这一页的数据通过php传给数据库
-
jquery ajax后台返回list,前台用jquery遍历list的实现
-
【Asp.net】使用Ajax和Jquery在前台向后台传参数并返回值的实例
-
php跳转-我用jQuery实现跳转到list.php页面,但是又想将这一页的数据通过php传给数据库
-
jquery ajax后台返回list,前台用jquery遍历list的实现