如何立即跳转到jQuery中的回调?

时间:2012-03-20 10:21:29

标签: jquery callback jquery-animate

我有这段代码:

$('#banner .bg_wrap:first').stop().animate({
                opacity: 0
            }, 500, function(){
                $(this).remove();
            });

现在,请帮助,我想要的是如果用户更快地悬停,立即跳转到回调函数。感谢。

1 个答案:

答案 0 :(得分:0)

你可以这样做:

$('#banner .bg_wrap:first').stop().animate({
            opacity: 0
        }, 500, callbackFunction);

$('#banner .bg_wrap:first').bind("mouseover", callbackFunction);

function callbackFunction(){
            if (this) $(this).remove();
}