我想從表格條帶中排除嵌套表格(使每一行都是不同的bg顏色)。這裏是我的代碼進行條帶化表:使用jQuery從表格條帶中排除嵌套表格
$(".stripeTable tbody tr:odd").addClass("stripe");
我的問題是,如何阻止我從接到類「條紋」嵌套表的奇數行?
這是從瀏覽器生成的代碼,我想從嵌套表中刪除class =「stripe」。
<table>
<tr>
<td>My Table Cell </td>
</tr>
<tr class="stripe">
<td>
<table>
<tr>
<td>My nested table cell</td>
</tr>
<tr class="stripe">
<td>my nested table cell (remove the stripe!)</td>
</tr>
</table>
</td>
</tr>
</table>
'stripeTable'類在哪裏? – BoltClock