当鼠标悬停在单元格最左侧的 10 个像素上时,我需要更改表格单元格的颜色。目前我有这个:
$("#myTable table thead tr th:nth-child(3)").mouseover(function () {
$(this).css("background-color", "red");
});
$("#myTable table thead tr th:nth-child(3)").mouseout(function () {
$(this).css("background-color", "white");
});
这适用于悬停在整个元素上,但我需要它只在悬停在它最左边的 10px 上时发生。