我有以下代码,如何设置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>
谢谢!
答案 0 :(得分:1)
<td id="<s:property value="year" />">