How to toggle a Bootstrap dropdown menu from a link?

前端 未结 1 1981
春和景丽
春和景丽 2021-01-19 16:10

I have a Bootstrap dropdown menu that is working fine. What I\'d like to do is also trigger the opening of the menu by clicking on a link elsewhere on the page. (This make

相关标签:
1条回答
  • 2021-01-19 16:46

    try

    $(".dropdown").addClass("open");
    

    and

    $(".dropdown").removeClass("open");
    
    0 讨论(0)
提交回复
热议问题