Posted on 2008-11-02 17:39 
ZhouFeng 阅读(740) 
评论(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>