私は 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>
助けてくれてありがとう