其他分享
首页 > 其他分享> > [前端系列] jquery的on事件实现hover函数效果

[前端系列] jquery的on事件实现hover函数效果

作者:互联网

当使用jquery的on函数的时候,可以给动态添加的元素增加事件,但是却没有悬浮hover函数了

可以使用这种方式模拟实现hover函数效果

 

    $("body").on("mouseover mouseout",".lineItem",function(event) {
        if(event.type == "mouseover"){
            //鼠标悬浮

        }else if(event.type == "mouseout"){
            //鼠标离开

        }
    });

 

标签:jquery,hover,函数,前端,mouseout,type,event
来源: https://www.cnblogs.com/taoshihan/p/15705529.html