jquery – Bootstrap popover,躲在点击外面?

前端之家收集整理的这篇文章主要介绍了jquery – Bootstrap popover,躲在点击外面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用bootstrap popover,现在我试图得到这个代码点击外面的popover来关闭popover:
$('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');
        }
    });
});

但是当我使用这个部分时,我可以关闭popover,但是我不能点击其他按钮,任何人都知道我该怎么做

所有按钮:

<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');
        }
    });
});

几乎和你一样的代码

原文链接:https://www.f2er.com/jquery/179813.html

猜你在找的jQuery相关文章