日期:2014-05-18  浏览次数:20635 次

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

------解决方案--------------------
<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>