Bootstrap 4 popover只打开

时间:2016-09-02 10:02:41

标签: jquery twitter-bootstrap popover

我创建了一个模态窗口,它与a链接focus我要显示/隐藏停顿:

<a tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-content="And here's some amazing content. It's very engaging. Right?">What type of accounts are found?</a>

问题是,只能使用一次,而且单击时没有任何反应。 popover的脚本:

$(document).ready(function(){
    $('[data-toggle="popover"]').popover();

    $('.popover-dismiss').popover({
        trigger: 'focus'
    });

    $('.example-popover').popover({
        container: 'body'
    });
});

有人知道可能是什么原因?

错误:tether.min.js:1未捕获TypeError:无法在'Node'上执行'removeChild':参数1不是'Node'类型

0 个答案:

没有答案