2

我在 JavaScript 文件中有这个表达式......

$('tbody tr:even').addClass("alt-row"); 

它交替了我所有表格行的颜色,这没关系。但是我想在 tr 中添加一个异常类,例如“no-alternate-color”。

<table id="invoice">
  <tbody>
  <tr class="headings">
    <th class="item first" style="padding-left:5px;">Unidad</th>
    <th class="description">Descripcion</th>
    <th class="price">Precio</th>
    <th class="quantity">Cantidad</th>
    <th class="linetotal last" style="padding-right:7px;">Total</th>
  </tr>
  <tr class="lineitem alt-row" style="border-bottom:1px solid #e5e5e5;">
    <td class="item_name_data" style="padding:2px 2px 2px 5px;">MacBook Pro 13"</td>
    <td class="description">13-inch: 2.4 GHz
2.4GHz dual-core
Intel Core i5
    </td>
    <td class="price_data">1199.99</td>
    <td class="quantity_data">2</td>
    <td class="linetotal_data" style="padding-right:5px;">2399.98</td>
  </tr>
  <tr class="lineitem" style="border-bottom:1px solid #e5e5e5;">
    <td class="item_name_data" style="padding:2px 2px 2px 5px;">Muji Table</td>
    <td class="description">awesome light brown table</td>
    <td class="price_data">89.99</td>
    <td class="quantity_data">1</td>
    <td class="linetotal_data" style="padding-right:5px;">89.99</td>
  </tr>
</tbody>
</table>

例如,上表中tr的本来就没有“alt-row”类,而是通过jQuery函数添加的。

我对 jQuery 不是很流利。我怎么能做到这一点?

4

2 回答 2

5
$('tbody tr:not(.no-alternate-color):even').addClass("alt-row");

http://jsfiddle.net/CKeew/

于 2012-04-11T17:38:31.223 回答
5

如果您愿意,您可以单独使用 CSS 来完成此操作(取决于您要完成的工作).. 达到这种效果..

http://jsfiddle.net/xENWM/1/

于 2012-04-11T17:50:47.047 回答