我如何获得$(this)
中的setTimeout
,以便在img
下面的情况下获取悬停函数的选择器。
$("img").hover(function(){
window.setTimeout(function() {
$(this).addClass("hovering"); // add class .hovering to the exact img being hovered
}, 500);
});
答案 0 :(得分:1)
将this
放入其他变量中。
$("img").hover(function() {
var $this = $(this);
window.setTimeout(function() {
$this.addClass("hovering"); // add class .hovering to the exact img being hovered
}, 500);
});