javascript技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript技巧 > tr背景颜色

鼠标经过tr时,改变tr当前背景颜色

作者:

本篇文章主要介绍了鼠标经过tr时,改变tr当前背景颜色的示例代码,需要的朋友可以过来参考下,希望对大家有所帮助
示例如下:
复制代码 代码如下:

<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>
您可能感兴趣的文章:
阅读全文