<script
>
var trs
=document
.querySelector('tbody').querySelectorAll('tr');
for(var i
=0;i
<trs
.length
;i
++)
{
trs
[i
].onmousemove=function()
{
this.className
='bg';
}
trs
[i
].onmouseout=function()
{
this.className
='';
}
}
</script
>
转载请注明原文地址: https://lol.8miu.com/read-19525.html