使用css来设计样式而不是jQuery

时间:2012-08-01 15:27:44

标签: jquery css

我遇到过这段代码:

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

这会为表格的每一个奇数行着色。

如何在css中处理它而不是使用jQuery来执行它?

4 个答案:

答案 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;}

此链接可以帮助您

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