我正在使用 ajax 将 XML 加载到表中,并尝试执行“悬停”事件以在悬停进出表行时更改颜色。表格行是使用 AJAX 动态添加的。它不工作。以下是代码:
$(document).ready(function(){
//$("tr").hover(function(){
$("#tbl1").on("hover","tr",function(){
$(this).attr('bgcolor', "yellow");
},
function(){
$(this).attr('bgcolor', "white");
});
});
以下是页面加载时的表格
<table width="200" border="5" cellspacing="5" cellpadding="5" id="tbl1">
<tr>
<th scope="col">Index</th>
<th scope="col">Matriks</th>
<th scope="col">Name</th>
<th scope="col">IC</th>
<th scope="col">Age</th>
<th scope="col">Photo</th>
</tr>
</table>
提前感谢您的帮助