避免下拉菜单在点击时关闭
2022-08-29 23:38:02
我有一个Twitter Bootstrap下拉菜单。正如所有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-controls
carousel indicators
document
click
$('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 下拉列表/事件不是解决方案:hide
hidden
- 为两个事件处理程序提供的事件对象不提供对单击的元素的引用
- 我无法控制下拉菜单内容,因此无法添加类或属性
flag
这个小提琴是正常的行为,这个小提琴是添加的。event.stopPropagation()
更新
感谢罗曼的回答。我还找到了一个答案,你可以在下面找到。