我有一张桌子,当我将鼠标悬停在这个单元格上时,背景和字体颜色应该会发生变化,然后当我 mouseOut 时会变回来,但由于某种原因,我似乎无法让字体改变颜色。我正在使用 asp-classic 和 internet explorer 8。
<TH <%if boolHighlight=false then %>onMouseOver="this.bgColor='#E3E31B'; this.style.color='#ffffff';" onMouseOut="this.bgColor='#FFFFFF'; this.style.color='#000000';" <%end if%>style="width: 9%; cursor: hand; border-right: none; align: center; vertical-align: center;"
title="Click to get info">
<font color="navy"><%= RS("ROLL_ID")%></font>
</TH>