:
复制代码代码如下:
<html>
<adal>
<meta http-equiv = "contenu-type" contenu = "text / html; charset = gbk">
<Title> 鼠标经过给 Tr 换颜色 </TITAL>
</ head>
<body>
<Table Align = "Center" CellSpacing = "1" CellPadding = "1">
<tr style = "curseur: hand" onMousemove = "ChangeTrColor (this)">
<td align = "Center"> 1 </td>
<td> 123 </td>
<TD> ABVX </TD>
<TD> 465465 </td>
<TD> 546654654 </td>
</tr>
<tr style = "curseur: hand" onMousemove = "ChangeTrColor (this)">
<td align = "Center"> 1 </td>
<td> 123 </td>
<TD> ABVX </TD>
<TD> 465465 </td>
<TD> 546654654 </td>
</tr>
<tr style = "curseur: hand" onMousemove = "ChangeTrColor (this)">
<td align = "Center"> 1 </td>
<td> 123 </td>
<TD> ABVX </TD>
<TD> 465465 </td>
<TD> 546654654 </td>
</tr>
</ table>
<script type = "text / javascript">
fonction changetColor (obj) {
var _Table = obj.parentNode;
for (var i = 0; i <_Table.Rows.length; i ++) {
_Table.Rows [i] .style.backgroundColor = "";
}
obj.style.backgroundcolor = "bleu";
}
</cript>
</ form>
</docy>
</html>