我必须在鼠标悬停时突出显示 gridview 的一个单元格。突出显示有问题。我正在检查单元格是否会突出显示。
// 来源
<script type="text/javascript">
$(document).ready(function() {
$('#gvrecords tr:td').mouseover(function() {
$(this).addClass('highlightRow');
});
$('#gvrecords tr').mouseout(function() {
$(this).removeClass('highlightRow');
})
})
</script>
我哪里错了?