私はこのコードに遭遇しました:
$("#customTable tr:nth-child(odd)").addClass("newColour");
これにより、テーブルの奇数行すべてに色が付けられます。
jQueryを使用して実行する代わりに、css内でこれをどのように処理できますか?
#customTable tr:nth-child(odd) {
background-color:#eee;
}
#customTable tr:nth-child(even) {
background-color:#fff;
}
#TABLE_ID tr:nth-child(odd) {YOUR RULE HERE}
#customTable tr:nth-child(even) {background: color;}
#customTable tr:nth-child(odd) {background: color;}
このリンクはあなたを助けるかもしれません