我正在使用<logic:iterator>
标签来显示这样的表格数据
<logic:iterate id="LT" name="lastToken" scope="request">
<tr>
<td class="TblHometd"><bean:write name="LT" property="tokennumber" format="#"/></td>
<td class="TblHometd"><bean:write name="LT" property="adjustmenttime" format="hh:mm:ss"/></td>
<td class="TblHometd"><bean:write name="LT" property="actualfinishedtime" format="hh:mm:ss"/></td>
<td class="TblHometd"><bean:write name="LT" property="consultationtype"/></td>
<td class="TblHometd"><bean:write name="LT" property="mobileno" format="#"/></td>
<td class="TblHometd"><bean:write name="LT" property="consultationstatus"/></td>
<td class="TblHometd"><bean:write name="LT" property="smsstatus"/></td>
</tr>
</logic:iterate>
现在我想改变background color for alternate rows
我该怎么做????
提前致谢