私は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だと白くなります!何か案は?