我有以下代码:
$('table tr:not(:first-child)').mouseover(function() {
$(this).removeClass('hovered_error');
$(this).addClass('hovered');
}).mouseout(function() {
$(this).removeClass('hovered');
});
这很好地突出了表格行。但是,我现在在同一页面上有不止一张表,我只希望上面highlighting
的表适用于其中一张表。
任何想法我可以如何实现这一目标?