js mouseover,mouseout出现闪烁情况

 $("#id").hover(function(){
                        var that=this;
                        t=setInterval(function(){
                            $(that).toggleClass("on");
                        },100);////延迟显示
                    },function(){
                        var that=this;
                        clearInterval(t);////清除延时
                        $(that).toggleClass("on");
                    });

利用hover,hover相当于mouseenter和mouseleave,在鼠标移入的时候延迟显示,移除的时候清除延时 

 

你可能感兴趣的:(web前端,js技巧)