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