Disabled dropdown menu items using twitter bootstrap

前端 未结 8 1091
挽巷
挽巷 2021-02-03 20:16

I use markup to display a dropdown menu using Twitter Bootstrap.

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-03 20:40

    To disable the the dropdown use:

    $('.dropdown-toggle').addClass('disabled');
    

    To enable it back:

    $('.dropdown-toggle').removeClass('disabled');
    

提交回复
热议问题