我有以下代码:
$('table tr:not(:first-child)').mouseover(function() {
$(this).removeClass('hovered_error');
$(this).addClass('hovered');
}).mouseout(function() {
$(this).removeClass('hovered');
});
这非常好地突出了一个表格行。但是,我现在在同一页面上有多个表格,我只希望上面的highlighting
适用于其中一个表格。
我有什么想法可以实现这个目标?
答案 0 :(得分:2)
为您想要的表格省略唯一ID(ex hoverTable
)
$('table:not(#hoverTable) tr:not(:first-child)').mouseover(function() {