Drop-Down Menu not working on mobile devices

前端 未结 7 1677
广开言路
广开言路 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 09:09

    This worked for me:

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

    via robdodson on github

    0 讨论(0)
提交回复
热议问题