当你将鼠标悬停在另一个DOM元素上时,我想显示一个div,但是如果在显示div之前移动鼠标,我想取消此操作。到目前为止,这就是我所拥有的
HTML
<div id="msg">
<a href="#" id="33"> HERE </a>
</div>
JS
var timer;
$("body").on('mouseenter', '#msg a',function(){
var userHover = $(this).attr("id");
timer = setTimeout(function () {
alert(userHover);
}, 1000);
}).on('mouseleave', '#msg a', function(){
});
感谢任何帮助。
答案 0 :(得分:3)
您正在寻找clearTimeout()
:
var timer;
$("body").on('mouseenter', '#msg a', function(){
var userHover = $(this).attr("id");
timer = setTimeout(function () {
alert(userHover);
}, 1000);
}).on('mouseleave', '#msg a', function(){
clearTimeout(timer);
});
但是,如果您有多个匹配#msg a
的元素,我强烈建议您将timer
值存储在特定于元素的数据中。
$("body").on('mouseenter', '#msg a', function(){
var userHover = $(this).attr("id");
$(this).data('timer', setTimeout(function () {
alert(userHover);
}, 1000));
}).on('mouseleave', '#msg a', function(){
clearTimeout($(this).data('timer'));
});