<script>
<c:forEach var="obj" items="${mulst} ">
alert("${obj.属性}");
</c:forEach>
</script>
其实该解决方案不是很好,容易导致浏览器崩溃,当List元素很多时,循环的代码就很多,页面很庞大,浏览器吃不消!
另外,
服务端生成的数据,客户端去遍历的问题,最好使用Ajax技术。
- $.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;
- }
- });
时间: 2024-10-09 11:22:46