如何在父菜单上单击时显示导航菜单下拉列表(而不是将鼠标悬停在父菜单上( 我正在使用引导导航菜单。
默认情况下,引导下拉列表已在单击时折叠。 bootstrap 下拉列表.
但是如果您希望它们在悬停时折叠。下面是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');
});