更改每个其他 div 的表格单元格背景颜色的正确语法是什么?
代码示例:
<table>
<div id="alternator">
<tr>
//stuff here
</tr>
<tbody>
<tr>
<td>
<table>
//stuff here
</table>
</td>
</tr>
</tbody>
</div>
</table>
为了解释,我的表格的一部分被包裹在一个 id 的 Div 中,ALTERNATOR
对于出现在页面上的每个其他 ALTERNATOR,我想更改内部表格单元格的背景颜色
就像是:
(#Alternator:odd).AllTableCellsInside().attr(background-color, "grey")