问题描述
<tdonMouseOver="this.style.background='#ff6600'"onMouseOut="this.style.background='#CCCCCC';"bgcolor="#CCCCCC"></td>
上面的代码是鼠标滑过时候表格背景色变化,离开的时候会恢复默认的背景色。我现在有个问题,就是上面这段代码。因为我的背景是图片。所以上面关于背景色的地方我该如何改成图片的形式呢。background='#ccccc'这里应该是图片地址
解决方案
解决方案二:
楼主运行...图片自己找吧<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>无标题文档</title></head><body><divonMouseOver="this.style.backgroundImage='url(1.jpg)'"onMouseOut="this.style.backgroundImage='url(2.jpg)';"style="width:400px;height:300px;"></div></body></html>
解决方案三:
<tableborder=1><tr><tdonMouseOver="this.background='img1.jpg'"onMouseOut="this.background='img2.jpg'"bgcolor="#CCCCCC"style="width:626px;height:204px;"></td></tr></table>