最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jquery delegate() events (mouseover mouseout) fires twice - Stack Overflow

programmeradmin2浏览0评论

i have the following script firing mouseover and mouseout always twice! what do you suggest i do wrong (unbind, return e.g.)? i tried a few things but nothing helped.

here is the code:

  $('#container').delegate('div.showmenu', 'mouseover mouseenter mouseout mouseleave', function(e){
  if (e.type === 'mouseover' || e.type==='mouseenter') { //jIE requires mouseenter, does not fire mouseover                                 
        if($(this).parents().closest('div').hasClass('whatever')){            
          alert(e.type);  //double-alerts mouseover

          menu.show();

    foldercmenu.hover(
        function(){
            $(this).show();                             
        },
        function(){
            $(this).hide();                                             
        }
    );                              

        }else {
    //do other stuff :-)
    }                                               
  }else if(e.type==='mouseout' || e.type==='mouseleave'){  //IE requires mouseleave, does not fire mouseout  
        alert(e.type);  //double-alerts mouseout
        menu.hide();
        $(this).unbind('mouseover mouseenter mouseout mouseleave');
  }
  //return false;   
});

i have the following script firing mouseover and mouseout always twice! what do you suggest i do wrong (unbind, return e.g.)? i tried a few things but nothing helped.

here is the code:

  $('#container').delegate('div.showmenu', 'mouseover mouseenter mouseout mouseleave', function(e){
  if (e.type === 'mouseover' || e.type==='mouseenter') { //jIE requires mouseenter, does not fire mouseover                                 
        if($(this).parents().closest('div').hasClass('whatever')){            
          alert(e.type);  //double-alerts mouseover

          menu.show();

    foldercmenu.hover(
        function(){
            $(this).show();                             
        },
        function(){
            $(this).hide();                                             
        }
    );                              

        }else {
    //do other stuff :-)
    }                                               
  }else if(e.type==='mouseout' || e.type==='mouseleave'){  //IE requires mouseleave, does not fire mouseout  
        alert(e.type);  //double-alerts mouseout
        menu.hide();
        $(this).unbind('mouseover mouseenter mouseout mouseleave');
  }
  //return false;   
});
Share Improve this question edited Jul 5, 2012 at 21:51 nwalke 3,2096 gold badges37 silver badges61 bronze badges asked Sep 8, 2011 at 14:05 s.hoffs.hoff 511 silver badge2 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 7

mouseover and mouseout a triggered when you enter/leave a child of the element, maybe that's the effect you are seeing.

An other problem is that you are binding the handler to both, mouseover and mouseenter ( and mouseleave and mouseout).

Only bind to mouseenter and mouseleave. jQuery is already taking care of the browser differences.

I had something similar with .delegate();

Have you checked out http://api.jquery./event.stopImmediatePropagation/?

It fixed my issue.

发布评论

评论列表(0)

  1. 暂无评论