代碼: 選擇全部
<SCRIPT language=javascript>
<!--
function NavRollOverW(oTd) { if (!oTd.contains(event.fromElement)) {oTd.bgColor="ababee";}}
function NavRollOutW(oTd) {if (!oTd.contains(event.toElement)) {oTd.bgColor="ffffff";}}
// -->
</SCRIPT>
<table border = 1>
<tr >
<td width=70>id</td><td width=200>name</td><td width=70>age</td>
</tr>
<tr onmouseOver="NavRollOverW(this);" onmouseOut="NavRollOutW(this);">
<td width=70>1</td><td width=200>張三</td><td width=70>28</td>
</tr>
<tr onmouseOver="NavRollOverW(this);" onmouseOut="NavRollOutW(this);">
<td width=70>1</td><td width=200>李四</td><td width=70>41</td>
</tr>
<tr onmouseOver="NavRollOverW(this);" onmouseOut="NavRollOutW(this);">
<td width=70>1</td><td width=200>王五</td><td width=70>36</td>
</tr>
</table>