Bootstrap - dropdown menu not working?

后端 未结 11 1922
一向
一向 2020-12-24 00:43

My dropdown menu in Bootstrap doesnt appear to be working - can anyone alert me to the problem? Right now it displays the dropdown, but clicking it does nothing. Thanks!

11条回答
  •  青春惊慌失措
    2020-12-24 01:33

    put following code in your page

      Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequest);
        function EndRequest(sender, args) {
            if (args.get_error() == undefined) {
            $('.dropdown-toggle').dropdown();
            }
        }
    

提交回复
热议问题