1
我已經創建了一個腳本。這在導航中打開我的子菜單。當你將鼠標移出子菜單時。子菜單必須關閉,延遲300毫秒。但延遲不起作用。我怎樣才能解決這個問題?這是我的腳本:延遲子菜單
$('.nav-main .container li').hover(function() {
if ($(this).find('.submenu').length > 0) {
$(this).addClass("hover");
$(this).find('.submenu').show();
}
}, function() {
$(this).find('.submenu').delay(300).hide();
$(this).removeClass("hover");
});
[hoverIntent](http://cherne.net/brian/resources/jquery.hoverIntent.html)。 – wroniasty 2012-04-28 12:49:17