POSTED
我有一个正在运行的事件,使用 on 事件检查我是否将链接悬停在某事之后。
$(document).on("mouseenter","#hover",function() {
load();
$("#sidebar").fadeToggle("slow");
$("#sidebar").html('');
$.post("ajax_search.php?type=sidebar", { sidebar : $("#search").val() }, function(get_data) {
stop_load();
$("#sidebar").html(get_data);
});
});
问题
我怎样才能让它在你停止悬停#hover
时#sidebar
隐藏起来?我正在发布#hover
,这就是我使用该ON
事件的原因。
有偶数notOn
吗?
谢谢!