当前位置: 代码迷 >> HTML/CSS >> 超链接标签a中 onmouseover 跟 onmouseout ,求解释
  详细解决方案

超链接标签a中 onmouseover 跟 onmouseout ,求解释

热度:889   发布时间:2012-08-02 11:35:26.0
超链接标签a中 onmouseover 和 onmouseout ,求解释
<a onmouseover=showmenu(event,infoLibrary) 
  onmouseout=delayhidemenu() 
  class='navlink' 
  style="CURSOR:hand" > 信息库管理 </a> 

这段代码是什么意思呢?

------解决方案--------------------
鼠标移动到这个链接上时执行showmenu(event,infoLibrary)函数,移开时执行delayhidemenu()函数。
从这两个函数的名字上就能猜到,这是个导航菜单,移到链接上时显示菜单,移出时隐藏菜单。
------解决方案--------------------
同意楼上的,另外这个链接使用的是"navlink"的样式,同时指针样式为"hand"型

------解决方案--------------------
CURSOR:hand补充一点。。这个只支持Ie老版本。。想要支持新版本。。CURSOR:pointer