当鼠标移动到<td> 之间时,onmousemove 事件触发后,如何改变<td>的颜色??
求这段代码

解决方案 »

  1.   

    <td   onmouseover="this.bgColor='#d2d2d2';"   onmouseout="this.bgColor='#f8f8f8';"     bgColor="#f8f8f8">......</td>
      

  2.   

    <html><table><tr> <td align="left" valign="middle" bgcolor="#FFFFFF" style="cursor:hand; height:25px" 
      onmouseover="this.style.backgroundColor='#000000';" 
      onmouseout="this.style.backgroundColor='#FFFFFF';">&nbsp;&nbsp;
      <img src="../images/arrow02.gif" alt="" width="10" height="7"  border="0" /> 
      <a href="http://www.xuanying.com.cn/service/faq/" target="_parent">常见问题</a></td></tr></table></html>