如何使用 Struts 标签迭代 JSP 中的表?

发布于 2024-08-19 18:42:25 字数 527 浏览 3 评论 0原文

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜是你 2024-08-26 18:42:26

如果你想通过迭代显示单个表有多个表

你可以使用任何JSTL或Struts标签迭代器来迭代一个表

例如

<s:iterator value="listObject">
<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>
</s:iterate>

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

<s:iterator value="listObject">
<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>
</s:iterate>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文