本篇文章主要介绍了鼠标经过tr时,改变tr当前背景颜色的示例代码,需要的朋友可以过来参考下,希望对大家有所帮助
示例如下:
复制代码 代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>鼠标经过给tr换颜色</title>
</head>
<body>
<table cellspacing="1" cellpadding="1" >
<tr onmousemove="changeTrColor(this)">
<td>1</td>
<td> 123</td>
<td> abvx</td>
<td> 465465</td>
<td>546654654</td>
</tr>
<tr onmousemove="changeTrColor(this)">
<td>1</td>
<td> 123</td>
<td> abvx</td>
<td> 465465</td>
<td>546654654</td>
</tr>
<tr onmousemove="changeTrColor(this)">
<td>1</td>
<td> 123</td>
<td> abvx</td>
<td> 465465</td>
<td>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>
您可能感兴趣的文章:
相关文章
最新评论
站长推荐 正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248] 站长推荐 Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]
大家感兴趣的内容
最近更新的内容
常用在线小工具