我有一个 html 表:
<table id=mytable>
<tr>
<th>Configurations</th>
<th>Dual 1.8GHz</th>
<th>Dual 2GHz</th>
<th>Dual 2.5GHz</th>
</tr>
</table>
然后我写了以下内容:
<script type="text/javascript">
$('#mytable tr').hover(
function () {
$(this).css("background","yellow");
},
function () {
$(this).css("background","");
}
);
</script>
当我将鼠标悬停在表格行上时,它在 Firefox 中变为黄色,但在 IE 中变为白色!有任何想法吗?