完全表格變色
將下列程式碼複製至<head>程式碼</head>區內。
<script language="javascript"> //OnMouse table change backgroundColor function OMOver(OMO){OMO.style.backgroundColor='#EFEFEF';} function OMOut(OMO){OMO.style.backgroundColor='';} </script> |
將下列程式碼複製至<td>套用整列</td>之前。
<tr bgcolor="#FFFFFF" onmouseover="OMOver(this);" onmouseout="OMOut(this);"> |