我有一个推特引导下拉菜单。所有Twitter Bootstrap用户都知道,下拉菜单在点击时关闭(甚至在里面点击)。

为了避免这种情况,我可以很容易地在下拉菜单上附加一个单击事件处理程序,并简单地添加著名的event. stoppropagation()。

<ul class="nav navbar-nav">
  <li class="dropdown mega-dropdown">
    <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown">
      <i class="fa fa-list-alt"></i> Menu item 1
      <span class="fa fa-chevron-down pull-right"></span>
    </a>
    <ul class="dropdown-menu mega-dropdown-menu">
      <li>
        <div id="carousel" class="carousel slide" data-ride="carousel">
          <ol class="carousel-indicators">
            <li data-slide-to="0" data-target="#carousel"></li>
            <li class="active" data-slide-to="1" data-target="#carousel"></li>
          </ol>
          <div class="carousel-inner">
            <div class="item">
              <img alt="" class="img-rounded" src="img1.jpg">
            </div>
            <div class="item active">
              <img alt="" class="img-rounded" src="img2.jpg">
            </div>
          </div>
          <a data-slide="prev" role="button" href="#carousel" 
             class="left carousel-control">
            <span class="glyphicon glyphicon-chevron-left"></span>
          </a>
          <a data-slide="next" role="button" href="#carousel" 
             class="right carousel-control">
            <span class="glyphicon glyphicon-chevron-right"></span>
          </a>
        </div>
      </li>
    </ul>
  </li>
</ul>

这看起来很简单,也是一种非常常见的行为,然而,由于carousel控件(以及carousel指示器)事件处理程序被委托给文档对象,这些元素上的单击事件(prev/next控件,…)将被“忽略”。

$('ul.dropdown-menu.mega-dropdown-menu').on('click', function(event){
    // The event won't be propagated up to the document NODE and 
    // therefore delegated events won't be fired
    event.stopPropagation();
});

依赖于Twitter Bootstrap下拉隐藏/隐藏事件不是一个解决方案,原因如下:

为两个事件处理程序提供的事件对象没有提供对所单击元素的引用 我无法控制下拉菜单内容,因此添加标志类或属性是不可能的

这个小提琴是正常的行为,这个小提琴是添加了event.stopPropagation()。

更新

谢谢罗曼的回答。我也找到了一个答案,你可以在下面找到。


当前回答

您可以停止单击下拉列表中的传播,然后使用carousel javascript方法手动重新实现carousel控件。

$('ul.dropdown-menu.mega-dropdown-menu').on('click', function(event) {
    event.stopPropagation();
});

$('a.left').click(function () {
    $('#carousel').carousel('prev');
});

$('a.right').click(function () {
    $('#carousel').carousel('next');
});

$('ol.carousel-indicators li').click(function (event) {
    var index = $(this).data("slide-to");
    $('#carousel').carousel(index);
});

这是jsfiddle。

其他回答

我修改了@Vartan的答案,使它与Bootstrap 4.3一起工作。他的解决方案不再适用于最新版本,因为目标属性总是返回下拉菜单的根div,无论单击放在哪里。

代码如下:

$('.dropdown-keep-open').on('hide.bs.dropdown', function (e) {
  if (!e.clickEvent) {
    // There is no `clickEvent` property in the `e` object when the `button` (or any other trigger) is clicked. 
    // What we usually want to happen in such situations is to hide the dropdown so we let it hide. 
    return true;
  }

  var target = $(e.clickEvent.target);

  return !(target.hasClass('dropdown-keep-open') || target.parents('.dropdown-keep-open').length);
});
<div class="dropdown dropdown-keep-open">
  <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Dropdown button
  </button>
  <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
    <a class="dropdown-item" href="#">Action</a>
    <a class="dropdown-item" href="#">Another action</a>
    <a class="dropdown-item" href="#">Something else here</a>
  </div>
</div>
$(function() {
    $('.mega-dropdown').on('hide.bs.dropdown', function(e) {
        var $target = $(e.target);
        return !($target.hasClass("keep-open") || $target.parents(".keep-open").size() > 0);
    });

    $('.mega-dropdown > ul.dropdown-menu').on('mouseenter', function() {
        $(this).parent('li').addClass('keep-open')
    }).on('mouseleave', function() {
        $(this).parent('li').removeClass('keep-open')
    });
});

这帮助了我,

$('.dropdown-menu').on('click', function (e) {
     if ($(this).parent().is(".open")) {
         var target = $(e.target);
         if (target.hasClass("keepopen") || target.parents(".keepopen").length){
                    return false; 
                }else{
                    return true;
                }
            }            
});

您的下拉菜单元素需要像这样,(注意类下拉菜单并保持打开。

<ul role="menu" class="dropdown-menu topmenu-menu eserv_top_notifications keepopen">

上面的代码防止对整个<body>进行投标,而是对带有类下拉菜单的特定元素进行投标。

希望这能帮助到一些人。

谢谢。

这可能会有帮助:

$("dropdownmenuname").click(function(e){
   e.stopPropagation();
})

引导5

如果有人通过谷歌来到这里,想要一个像我一样的Bootstrap 5版本,它是通过添加data-b -auto-close="outside"而内置的。注意,该选项是autoClose,但当作为数据属性传递时,驼峰字体被删除并由破折号分隔。

我在下拉菜单中添加了一个折叠小部件,并将data-b -auto-close="outside"添加到父data-b -toggle="dropdown"触发器,使下拉菜单在折叠菜单切换时保持打开状态。

查看官方引导文档:https://getbootstrap.com/docs/5.1/components/dropdowns/#options 这个代码依赖于示例代码(不是我的笔):https://codepen.io/SitePoint/pen/BaReWGe