使用伪元素jquery

时间:2012-05-11 17:46:47

标签: jquery

我有一个包含<tr><td>的HTML表,我需要为某些<td>元素设置一些属性。所以,问题是:

如果我写选择器this way

$("table tr:not(table tr:first)").css("background","#ccc");

它工作正常,但如果我尝试使用特定的表,则没有任何反应:

$("#tableTit tr:not(#tableTit tr:first)").css("background","#ccc");

我错过了什么?

1 个答案:

答案 0 :(得分:3)

您无需再次指定ID。就这样做:

$('#tableTit tr:not(:first)').css(...);

或者@bažmegakapa在评论中建议:

$('#tableTit tr').not(':first').css(...);