Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的下拉菜单中添加一个文本框,但每次我单击其中的文本框时,下拉菜单都会关闭。有没有一种方法可以在不关闭下拉菜单的情况下使用文本框?谢谢你。我有使用引导程序。
在正文的某处使用此代码停止关闭:
$('.dropdown-menu').find('form').click(function(e) { e.stopPropagation(); });