我的 CodePen: http ://codepen.io/leongaban/pen/nJzcv
所以我在 CSS-Tricks 上找到了这个很好的表格行高亮示例。(演示)
但是我不想突出显示 my top row
,我尝试仅针对具有类名的某些 td,但仍然没有关闭:(
你会怎么做?
//Row Highlighting
$("table .active").delegate('td','mouseover mouseout', function(e) {
if (e.type == 'mouseover') {
console.log('hovering over row');
$(this).parent().addClass("gray-rollover");
}
else {
$(this).parent().removeClass("gray-rollover");
}
});
// Works but highlights all Rows
/*$("table").delegate('td','mouseover mouseout', function(e) {
if (e.type == 'mouseover') {
console.log('hovering over row');
$(this).parent().addClass("gray-rollover");
}
else {
$(this).parent().removeClass("gray-rollover");
}
});*/