网上找到的解决办法是改为mouseenter和mouseleave事件,改过之后还是不行。鼠标滑过触发区域,下拉菜单会反复弹出、隐藏。
//purProduction为“购买产品”的id,showPurchase为下拉菜单的id $("#purProduction").mouseenter(function() { $("#showPurchase").slideDown(); }) $("#purProduction").mouseleave(function() { $("#showPurchase").slideUp(); }) $("#showPurchase").mouseenter(function(){ $("#showPurchase").slideDown(); }) $("#showPurchase").mouseleave(function(){ $("#showPurchase").slideUp(); }) <a class="name" id="purProduction" style="padding:20px;position:relative;left:1px;top:10px;">购买产品</a> <div class="showDiv" id="showPurchase" style="position:absolute;left:595px;top:50px;"> <!-- 向上的箭头 --> <div class="outTri"></div> <div class="inTri"></div> <a class="item" style="display:block;font-size:15px;border-bottom:1px solid rgb(240,243,244)">查询价格</a> <a class="item" style="display:block;font-size:15px;border-bottom:1px solid rgb(240,243,244)">等级购买</a> <a class="item" style="display:block;font-size:15px;border-bottom:1px solid rgb(240,243,244)">经销商查询</a> <a class="item" style="display:block;font-size:15px;border-bottom:1px solid rgb(240,243,244)">合作加盟</a> </div>
关于你说的『反复弹出』
其实是这样的:鼠标移到purProduction上,触发弹出purProduction的mouseenter;此时鼠标再移动到showPurchase上时,会触发什么事件呢?首先鼠标离开了purProduction,触发它的mouseleave,然后鼠标进入showPurchase,触发mouseenter……这还好,看起来也就收起一次再弹出一次而已,然而slideDown过程中也是会触发事件的,当showPurchase在slideDown过程中反复经过鼠标附近的时候,就会反复触发鼠标事件……
解决方法很简单。最好的办法是弃用这套机制改用hover。当然如果你很不舍得你的代码想留用,那就要考虑用Interval来定时检查了……比如这样(不要怪我写得丑,其实这事应该CSS定制)
//purProduction为“购买产品”的id,showPurchase为下拉菜单的id$("#showPurchase").slideUp();var show=false, showed=false;setInterval(function () { if (show && !showed) { $("#showPurchase").slideDown(); showed=true; } else if (!show && showed) { $("#showPurchase").slideUp(); showed=false; }}, 100);$("#purProduction").mouseenter(function() { show=true;})$("#purProduction").mouseleave(function() { show=false;})$("#showPurchase").mouseenter(function() { show=true;})$("#showPurchase").mouseleave(function(){ show=false;})
是因为你的事件队列里面全是mouseover和mouseout的,要么使用:hover控制样式,要么就像上面说的用stop方法去清空之前的事件队列。
怎么有种知乎变成 StackOverflow 的感觉……
这是因为鼠标事件多次触发之后,节点的动画队列里堆积了多次 slideDown 和 slideUp,改成 $('#showPurchase').stop(true).slideDown() 应该就好了。
两种方法
第一种最简单,把你的下拉菜单和按钮放到一个容器里面,只需要给该容器绑定你说的两个事件即可,其实你可以使用hover(),如果不是必须加效果还是用:hover比较简单。
第二种结构不变的情况下实现起来略麻烦,需要使用setTimeout,一般tooltip的就是这样子的实现。
以上是jQuery中下拉菜单mouseover和mouseout反复触发的解决方法的详细内容。更多信息请关注PHP中文网其他相关文章!