当前位置: 代码迷 >> ASP.NET >> 如用利用CSS,使用鼠标经过时更换背景图片,该如何解决
  详细解决方案

如用利用CSS,使用鼠标经过时更换背景图片,该如何解决

热度:6332   发布时间:2013-02-26 00:00:00.0
如用利用CSS,使用鼠标经过时更换背景图片
n
{
background-image:url(images/1.gif);
background-repeat:no-repeat;
background-position:center;
}
.m
{
background-image:url(images/2.gif);
background-repeat:no-repeat;
background-position:center;
}

<table height="100px" width="100px">
  <tr class="n" onmousemove="this.classname='m'" onmouseout="this.classname='n'">
  <td >aaaaa</td>
  </tr>
  </table>



这样为何没反应呢

------解决方案--------------------------------------------------------
onmousemove换成onmouseover
this.classname换成this.className