gpt4 book ai didi

jquery - Bootstrap 弹出窗口,点击外部隐藏?

转载 作者:行者123 更新时间:2023-12-03 21:43:29 25 4
gpt4 key购买 nike

使用 Bootstrap 弹出窗口,现在我尝试让此代码在弹出窗口外部单击以关闭弹出窗口:

$('body').on('click', function (e) {
$('[data-toggle="popover"]').each(function () {
//the 'is' for buttons that trigger popups
//the 'has' for icons within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
$(this).popover('hide');
}
});
});

但是当我使用这部分时,我可以关闭弹出窗口,但我无法单击其他按钮,有人知道我该怎么做吗?

所有按钮:

<a href="#" class="btn btn-xs btn-primary" data-toggle="popover">This opens popover</a>
<a href="#" class="btn btn-xs btn-primary">Other link</a> <- Doesn't work
<a href="#" class="btn btn-xs btn-primary">Other link</a> <- Doesn't work

最佳答案

我发现了这个:http://bootply.com/99372

$('body').on('click', function (e) {
$('[data-toggle=popover]').each(function () {
// hide any open popovers when the anywhere else in the body is clicked
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
$(this).popover('hide');
}
});
});

这几乎和你的代码一样......

关于jquery - Bootstrap 弹出窗口,点击外部隐藏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20466903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com