jQuery表行突出显示查询

时间:2013-11-14 20:53:10

标签: jquery highlight tablerow

我有以下代码:

$('table tr:not(:first-child)').mouseover(function() {
  $(this).removeClass('hovered_error');
  $(this).addClass('hovered');
  }).mouseout(function() {
  $(this).removeClass('hovered');
});

这非常好地突出了一个表格行。但是,我现在在同一页面上有多个表格,我只希望上面的highlighting适用于其中一个表格。

我有什么想法可以实现这个目标?

1 个答案:

答案 0 :(得分:2)

为您想要的表格省略唯一ID(ex hoverTable

$('table:not(#hoverTable) tr:not(:first-child)').mouseover(function() {