1. 程式人生 > >Bootstrap3.3.7導航欄下拉選單滑鼠滑過展開

Bootstrap3.3.7導航欄下拉選單滑鼠滑過展開

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

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

})