Jquery 鼠标移入移出事件

$(".friendship").on({
    mouseover: function () {
       //鼠标移入回调
        $(".link").show();
    },
    mouseout: function () {
        //鼠标移出回调
        $(".link").hide();
    }
});    

 

posted @ 2020-10-16 15:14  非凡云  阅读(3314)  评论(0编辑  收藏  举报