當鼠標懸停在單元格的最左側10個像素上時,我需要更改表格單元格的顏色。目前,我有這樣的:鼠標懸停最左邊10px的元素?
$("#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的它時只需要發生。
可你只需要添加一個div 10px的寬到小區的左側和目標上的鼠標懸停呢? – hiattp