Struts 2:设置的ID迭代器值?

发布于 2024-10-28 19:17:26 字数 502 浏览 0 评论 0原文

我有以下代码,如何将 TD 的 ID 设置为等于从我的列表(迭代器)返回的年份的 ID?我需要这个,这样我就可以在表/TD 上执行 JavaScript 函数(隐藏/显示...)。

<table id="earningtesttable">
       <s:iterator value="earningsTest">
            <tr>
               <td id=""> <!--I want to set the id also equal to the year-->
                    Year: <b><s:property value="year" /></b>
               </td>
            </tr>
       </s:iterator>
</table>

谢谢!

I have the following code, how do I go about setting the ID of the TD equal to that of the Year that is returned from my list (iterator)? I need this so I can then perform JavaScript functions on the table/TD (hide/show...).

<table id="earningtesttable">
       <s:iterator value="earningsTest">
            <tr>
               <td id=""> <!--I want to set the id also equal to the year-->
                    Year: <b><s:property value="year" /></b>
               </td>
            </tr>
       </s:iterator>
</table>

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光暖心i 2024-11-04 19:17:26
<td id="<s:property value="year" />">
<td id="<s:property value="year" />">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文