我有以下代码:
$('table tr:not(:first-child)').mouseover(function() {
$(this).removeClass('hovered_error');
$(this).addClass('hovered');
}).mouseout(function() {
$(this).removeClass('hovered');
});
这很好用 - 但是,有没有办法我不能突出显示某些表格行,例如第 11 和 21 行,或者如果表格行有特定的name
或class
?
编辑:正确的代码如下:
$('table tr:not(:first-child,[name=header])').mouseover(function() {
$(this).removeClass('hovered_error');
$(this).addClass('hovered');
}).mouseout(function() {
$(this).removeClass('hovered');
});