我遇到了 setTimeout() 的问题。我希望在鼠标悬停状态下,子菜单在间隔(500 毫秒)后向上滑动。但是 setTimeout() 不起作用。
就像在这个链接中:http: //jsfiddle.net/felipepalazzo/Xyhvn/2/
编码:
(function($){
$.fn.showMenu = function(options){
var settings = $.extend({
height : '40px',
speed : '500',
heightx : '20px'
}, options || {});
return this.each(function(){
var elem = $(this);
var menu_timer;
elem.hover(function(){
$(this).stop().animate({'height' : settings.height}, settings.speed);
}, function(){
//setTimeout(function(){
$(this).stop().animate({'height' : settings.heightx}, settings.speed);
//},500);
});
});
};
})(jQuery);