如何使用 Struts 标签迭代 JSP 中的表?
<table border="0" cellspacing="1" cellpadding="0" width="100%" class="boxtbl">
<th rowspan="2" class="fntnrml" colspan="5">Trip ID</th>
<bean:write name="loan" property="tripID1" />
<td><html:checkbox property="ZAXY" /></td>
<td><bean:write name="loan" property="Profile11" /></td>
<td><bean:write name="loan" property="StartDt11" /></td>
</table>
如何迭代上表?我读到只有集合可以迭代。但我还在 中使用“复选框”。怎么办?
<table border="0" cellspacing="1" cellpadding="0" width="100%" class="boxtbl">
<th rowspan="2" class="fntnrml" colspan="5">Trip ID</th>
<bean:write name="loan" property="tripID1" />
<td><html:checkbox property="ZAXY" /></td>
<td><bean:write name="loan" property="Profile11" /></td>
<td><bean:write name="loan" property="StartDt11" /></td>
</table>
How to iterate the above table? I read that only collections can be iterated. But I am also using "checkbox" inside the <td>
. How to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想通过迭代显示单个表有多个表
你可以使用任何JSTL或Struts标签迭代器来迭代一个表
例如
If you want to display single table has multiple tables by iteration
You can use any JSTL or Struts tag iterator to iterate a table
For Example