所以,我遇到了这种情况,但是如果用户“mouseleave(s)”超过 x 时间,比如一秒钟,我只想“做某事”。我应该如何实施?
$("#someElement, #someOtherElement").mouseleave(function() {
// Do something.
});
后来我补充说:
$('.popover3-test').popover({
placement:'bottom',
template: $('.popover2'),
trigger: 'manual',
}).mouseenter(function(e) {
$(this).popover('show');
$(".popover3-test, .popover2").each(function() {
var t = null;
$(this)
.mouseleave(function() {
t = setTimeout(function() {
$('.popover2').hide();
}, 1000); // Or however many milliseconds
})
.mouseenter(function() {
if(t !== null)
clearTimeout(t);
})
;
});
});