2013-07-21 61 views

回答

1

試試這個代碼在JS http://jsfiddle.net/jxU95/1/

$('#main-menu li.expanded').hover(function(){ 
       $(this).find('ul').stop(true,true).show('slow'); 
     }, 
     function(){ 
       $(this).find('ul').stop(true,true).delay(300).hide('slow'); 
     } 
    ); 
+0

非常感謝我的解決方案適用於我;) –

1

你可以用一些這樣做,

Live Demo

$('#main-menu li.expanded').hover(function() { 
    // $('#main-menu ul ul').hide(); 
    $(this).find('.menu').show('slow'); 
}, function() { 
    $(this).find('.menu').hide(); 
});