0

私はこのコードに遭遇しました:

$("#customTable tr:nth-child(odd)").addClass("newColour");

これにより、テーブルの奇数行すべてに色が付けられます。

jQueryを使用して実行する代わりに、css内でこれをどのように処理できますか?

4

3 に答える 3

1
#customTable tr:nth-child(odd) { 
    background-color:#eee; 
}
#customTable tr:nth-child(even) { 
    background-color:#fff; 
}

jsFiddleの例

于 2012-08-01T15:29:11.157 に答える
0
#TABLE_ID tr:nth-child(odd) {YOUR RULE HERE}
于 2012-08-01T15:30:27.853 に答える
-1
 #customTable  tr:nth-child(even) {background: color;}
   #customTable tr:nth-child(odd) {background: color;}

このリンクはあなたを助けるかもしれません

http://www.w3.org/Style/Examples/007/evenodd.en.html

于 2012-08-01T15:30:19.277 に答える