2017-08-12 118 views

回答

0

默認情況下,自動點擊下拉已經摺疊。見 bootstrap dropdowns
但是如果你希望它們在懸停時崩潰。下面是jQuery代碼做到這一點: -

$(".dropdown").hover(   
     function() { 
      $('.dropdown-menu', this).not('.in .dropdown-menu').stop(true, true).slideDown("fast"); 
      $(this).toggleClass('open');   
     }, 
     function() { 
      $('.dropdown-menu', this).not('.in .dropdown-menu').stop(true, true).slideUp("fast"); 
      $(this).removeClass('open');  
});