Bootstrap3.3.7导航栏下拉菜单从点击改为鼠标滑过展开

增加一下js代码

$(function () {
    $(".dropdown").mouseover(function () {
        $(this).addClass("open");
    });
 
    $(".dropdown").mouseleave(function(){
        $(this).removeClass("open");
    })
 
})

 

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注