使用多个选择手动关闭Bootstrap下拉列表

时间:2014-03-12 08:46:21

标签: javascript jquery html css twitter-bootstrap

我有这样一个下拉菜单:

enter image description here

它工作正常,但我需要添加一个手动Close按钮,类似于:

enter image description here

这样Dropdown关闭就像我点击页面上任何其他位置一样。

我查看了Bootstrap手册并搜索了Google,但无法找到解决方案。

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

您可能需要尝试以下操作(将其放在on-click中):

$('[data-toggle="dropdown"]').parent().removeClass('open');

因此,您的按钮看起来像:

<button onclick="$('[data-toggle="dropdown"]').parent().removeClass('open');"> x </button>