http://www.speedchina.cn/indexc.asp

解决方案 »

  1.   

    如:
    onMouseOut="MM_showHideLayers('Layer1','','hide')"
      

  2.   

    汗,最简单的办法用dw,动作里 的onmouseout事件你要选ie4。0以上,如果不喜欢MM方案的话,照着改一遍就可以了,不过你怎么会不会这个呢??我晕
      

  3.   

    写个判断就可以拉~~ 如果第二层 or 第三层 的纪录不为空 就执行这个层的 onmouseout (show or hide) 事件否则就不执行这样就可以解决移开鼠标不显示的效果...
      

  4.   

    BS BS 居然给弄到了.net版了,你的js是怎么写的??
      

  5.   

    把这些层都分离出来,然后在这些层上加onmouseout事件
      

  6.   

    var CurColor;
    function MouseOver(Element)
    {
    CurColor=Element.style.backgroundColor;
    Element.style.backgroundColor="#cc00cc";
    Element.style.cursor="hand";
    }
    function MouseOut(Element)
    {
    Element.style.backgroundColor=CurColor;
    Element.style.cursor="default";
    }
      

  7.   

    为层设置id,在onmouseout中设置id.style.display = none;即可