基于Bootstrap的CSS3下拉菜单DEMO演示

基于Bootstrap的CSS3下拉菜单DEMO演示1058
$('ul.nav li.dropdown').hover(function() {
  $(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(500);
}, function() {
  $(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(500);
});

也许你还喜欢