我目前有这段代码:
$(".usericon").hover(function () {
if ($(".profile").is(":hidden")) {
$(".profile").slideDown('slow');
}
});
当前正在向下滑动 .profile div,同时将鼠标悬停在 .usericon 上(但仅当它被隐藏时)
我想做的是,当我将鼠标悬停在 .profile 上时,什么也没有发生……但是当我将鼠标悬停在 .profile 以外的任何其他位置时,它会向上滑动。
我将如何实现这一点?