代码
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>鼠标经过给tr换颜色</title>    
</head>
<body>
<table align="center" width="100%" border="1" cellspacing="1" cellpadding="1" >
  
<tr style="cursor:hand " onmousemove="changeTrColor(this)">
    
<td align="center">1</td>
    
<td height="20">&nbsp;123</td>
    
<td height="20">&nbsp;abvx</td>
    
<td height="20">&nbsp;465465</td>
    
<td height="20">546654654</td>
  
</tr>
  
<tr style="cursor:hand " onmousemove="changeTrColor(this)">
    
<td align="center">1</td>
    
<td height="20">&nbsp;123</td>
    
<td height="20">&nbsp;abvx</td>
    
<td height="20">&nbsp;465465</td>
    
<td height="20">546654654</td>
  
</tr>    
  
<tr style="cursor:hand " onmousemove="changeTrColor(this)">
    
<td align="center">1</td>
    
<td height="20">&nbsp;123</td>
    
<td height="20">&nbsp;abvx</td>
    
<td height="20">&nbsp;465465</td>
    
<td height="20">546654654</td>
  
</tr>
</table>
<script type="text/javascript">
function changeTrColor(obj){    
    
var _table=obj.parentNode;
    
for (var i=0;i<_table.rows.length;i++){
        _table.rows[i].style.backgroundColor
="";
    }    
    obj.style.backgroundColor
="blue";
}
</script>
</form>
</body>
</html>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-29
  • 2021-09-13
  • 2021-11-27
猜你喜欢
  • 2021-12-18
  • 2022-12-23
  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-11
  • 2021-09-11
相关资源
相似解决方案