-1

更改每个其他 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")
4

1 回答 1

0

看起来像是:odd选择器的完美用例:http: //api.jquery.com/odd-selector/

$('#alternator tr:odd').css('background-color', 'grey');
于 2012-10-24T21:03:42.097 回答