1. 程式人生 > >滑鼠經過html 表格的行時,進行顏色區分

滑鼠經過html 表格的行時,進行顏色區分

1、css中,要加上TD

2、this.className的“N”要大寫

例如:


css:

.trA TD{
    background:#fff;
}
.trB TD{
    background:#99ffcc;
}

html:

foreach(....)

{

      <tr bgcolor="#fff" class="trA" style="border-bottom:1px solid $b9d3ec" onmouseover="this.className='trB'" onmouseout="this.className='trA'">

          <td>

         .....

         </td>

     </tr>

}