Posted on 2008-11-02 17:39
ZhouFeng 閱讀(718)
評論(0) 編輯 收藏 所屬分類:
轉載 、
Web開發
/*表格間隔行變背景色*/
.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>