用一个foreach遍历两个list的方法
更新时间:2012/10/30 点击:1199次
如果:List1和List2的size是一样大,可以这样:
<c:forEach items="${List1}" var="item" varStatus="status" ><td><c:out value="${item.paymentParaDesc}"></c:out></td>
<td>><c:out value="${List2[status.index].paymentVariable}"></c:out></td>
可以使用${List[status.index].属性名称}