在使用jQuery的hover事件時,經常會因為鼠標滑動過快導致菜單不停閃動的情況,相信很多朋友都遇到過自己做的縱向下拉菜單不停的收縮,非常的討厭。今天在給一個網站設計菜單時也遇到了這個情況,結果在百度上找了N久,沒有找到解決方法。在這里吐槽一下,百度太2了,收錄的內容都沒什么價值,最后還是在google找到了解決方法,下面就把這個jQuery的hover在IE中會導致不停閃動的解決方法教給大家。
$("#category ul").find("li").each( function() { $(this).mouseover( function() { $(this).children("ul").show(); } ); $(this).mouseout( function() { $(this).children("ul").hide(); } ); } );
鼠標在下拉菜單移動時菜單會不斷閃爍,說明不斷觸發了 mouseover 和 mouseout 事件。
其實很簡單的解決方法:將 mouseover 改成 mouseenter,mouseout 改成 mouseleave。mouseenter 和 mouseleave 事件是 jQuery 庫中實現的,并不是瀏覽器的原生事件。不過最重要的是把菜單不停閃動的問題解決了!
$("#category ul").find("li").each( function() { $(this).mouseenter( function() { $(this).children("ul").show(); } ); $(this).mouseleave( function() { $(this).children("ul").hide(); } ); } );
文章轉載請保留網址:http://aberdeenanguscattle.com/news/faq/834.html