我希望能够将鼠标悬停在一行上并突出显示所有内容,但是由于某些单元格具有不同的背景,因此下面的代码存在问题。
<tr style="" onmouseover="this.style.background='Red';" onmouseout="this.style.background='#595959'" >
没关系,所有单元格都具有相同的背景,但是如果我单击一个单元格,它会突出显示它并onmouseout="this.style.background='#595959'"
始终将其重置。
我怎样才能将其更改为:
onmouseout="this.style.background='currentCellBGColor"