我遇到过这段代码:
$("#customTable tr:nth-child(odd)").addClass("newColour");
这会为表格的每一个奇数行着色。
如何在css中处理它而不是使用jQuery来执行它?
答案 0 :(得分:1)
#customTable tr:nth-child(odd) {
background-color:#eee;
}
#customTable tr:nth-child(even) {
background-color:#fff;
}
<强> jsFiddle example 强>
答案 1 :(得分:0)
#TABLE_ID tr:nth-child(odd) {YOUR RULE HERE}
答案 2 :(得分:-1)
#customTable tr:nth-child(even) {background: #CCC}
#customTable tr:nth-child(odd) {background: #FFF}
答案 3 :(得分:-1)
#customTable tr:nth-child(even) {background: color;}
#customTable tr:nth-child(odd) {background: color;}
此链接可以帮助您