增加一下js代码

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