/*表格間隔行變背景色*/
.row
{
alternateColor:expression(bgColor=rowIndex%2==0?'#FFFFFF':'#EFF7FF');
}
將上面的代碼加入到tr中
<table>
<thead>
<tr>
<td nowrap>狀態</td>
</tr>
</thead>
<tbody>
<tr class="row">
<td nowrap>11111</td>
</tr>
</tbody>
</table>
.row
{
alternateColor:expression(bgColor=rowIndex%2==0?'#FFFFFF':'#EFF7FF');
}
將上面的代碼加入到tr中
<table>
<thead>
<tr>
<td nowrap>狀態</td>
</tr>
</thead>
<tbody>
<tr class="row">
<td nowrap>11111</td>
</tr>
</tbody>
</table>