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

时间:2011-03-30 20:02:33

标签: java html struts2

我有以下代码,如何设置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>

谢谢!

1 个答案:

答案 0 :(得分:1)

<td id="<s:property value="year" />">