我有以下代码:
$('table tr:not(:first)').mouseover(function() {
$(this).removeClass('hovered_error');
$(this).addClass('hovered');
}).mouseout(function() {
$(this).removeClass('hovered');
});
上面的方法可以确保表格的第一行被排除在“mouseover”和“mouseout”函数之外。
但是,问题是我在页面上有多个表格,而第一个表格行被忽略,其余的则没有。
我不确定如何调整上述内容以考虑多个表 - 有可能吗?