我正在尝试向我的 Jquery 添加延迟,以便一旦鼠标离开我的 div id=test 它将等待 3000 毫秒,然后再关闭备份。但是它似乎不起作用?
我正在使用 Jquery 1.6.min
提前感谢您的帮助和代码片段
$("#test").hover(function() {
$(this).css({'z-index' : '10'});
$(this).addClass("hover").stop()
.animate({
height: '60px'
}, 1500);
} , function() {
$(this).css({'z-index' : '0'});
$(this).delay(3000);
$(this).removeClass("hover").stop()
.animate({
height: '20px'
}, 1500);
});