1

我有以下代码:

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

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

任何想法我可以如何实现这一目标?

4

1 回答 1

2

给你想省略唯一 ID 的表(例如hoverTable

$('table:not(#hoverTable) tr:not(:first-child)').mouseover(function() {
于 2013-11-14T20:55:06.660 回答