我有一个包含<tr>
和<td>
的HTML表,我需要为某些<td>
元素设置一些属性。所以,问题是:
如果我写选择器this way:
$("table tr:not(table tr:first)").css("background","#ccc");
它工作正常,但如果我尝试使用特定的表,则没有任何反应:
$("#tableTit tr:not(#tableTit tr:first)").css("background","#ccc");
我错过了什么?
答案 0 :(得分:3)
您无需再次指定ID。就这样做:
$('#tableTit tr:not(:first)').css(...);
或者@bažmegakapa在评论中建议:
$('#tableTit tr').not(':first').css(...);