Jquery 鼠标移入移出事件

$(".friendship").on({
    mouseover: function () {
       //鼠标移入回调
        $(".link").show();
    },
    mouseout: function () {
        //鼠标移出回调
        $(".link").hide();
    }
});    
原文地址:https://www.cnblogs.com/ffyun/p/13826621.html