我怎样才能编写这个函数,以便当鼠标停留在 div .resting 上时它会触发调用。这是代码:
$(document).bind('mousemove', function() {
resetActive()
});
我希望它在鼠标停留在所需的 div .resting 上时调用 resetActive。我该如何编写代码?
我怎样才能编写这个函数,以便当鼠标停留在 div .resting 上时它会触发调用。这是代码:
$(document).bind('mousemove', function() {
resetActive()
});
我希望它在鼠标停留在所需的 div .resting 上时调用 resetActive。我该如何编写代码?
$('.resting').mouseenter(resetActive);
或者,为了干净和更好的实践,
$('.resting').on('mouseenter', resetActive);
// and later
$('.resting').off('mouseenter', resetActive);
并获得事件:
var resetActive = function(e) {
// do something...
}
$(".resting").mouseover(function() {
resetActive();
});