Drop-Down Menu not working on mobile devices

前端 未结 7 1705
广开言路
广开言路 2020-12-29 08:40

The most recent version of twitter bootstrap (2.3.2) does seem to have a problem with drop down menus on mobile devices.

When you click on a drop-down menu item afte

7条回答
  •  感情败类
    2020-12-29 08:59

    $('.dropdown a').click(function(e) {
          e.preventDefault();
          setTimeout($.proxy(function() {
            if ('ontouchstart' in document.documentElement) {
              $(this).siblings('.dropdown-backdrop ').off().remove();
            }
          }, this), 0);
    
        }); 
    

提交回复
热议问题