CSS配合JS实现鼠标触发TD背景变色 |
| [ 作者:佚名 转贴自:网络转载 阅读次数:97 更新时间:2007-10-22 12:18:00 录入:刘光勇 ] 热 |
|
|
|
<table width="100%" border="1" cellpadding="3" cellspacing="0" bordercolor="#efefef" bgcolor="#efefef"> <tr> <td onMouseOut="this.bgColor='#efefef';this.borderColor='#efefef'"; onMouseOver="this.bgColor='#cccccc'; this.borderColor='#000033'"><div align="left">cnbruce</div></td> </tr> <tr> <td onMouseOut="this.bgColor='#efefef';this.borderColor='#efefef'"; onMouseOver="this.bgColor='#cccccc'; this.borderColor='#000033'">cnbruce</td> </tr> </table>
|
|
|
|