如何使用此弹出框内的按钮关闭弹出窗口?

时间:2015-12-31 17:57:59

标签: javascript jquery html twitter-bootstrap

我想要按钮。当有人点击按钮时,会出现一个弹出窗口。在popover里面我有另一个按钮,当有人点击这个按钮时,popover会隐藏。

这个工作正常,但是另一次打开popover我必须在按钮上单击两次。

我的HTML:

<button type="button" class="actif" data-container="body" data-toggle="popover" data-placement="right" data-content="<button type='button' class='annuler'>NOT</button>" data-html='true'>
                                ACTIVE
                            </button>

我的jQuery:

$('[data-toggle="popover"]').popover();
    $(document).on("click", ".annuler", function () {
         $('[data-toggle="popover"]').popover('hide');
    });

我做错了什么? 最好的问候

1 个答案:

答案 0 :(得分:1)

以不同的方式尝试:

$(document).on("click", ".annuler", function (e) {
  $('[data-toggle="popover"]').trigger('click');
});
$(function () {
  $('[data-toggle="popover"]').popover();
});
<script src="//code.jquery.com/jquery-1.11.3.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>


<button type="button" class="actif" data-container="body" data-toggle="popover" data-placement="right"
        data-content="<button type='button' class='annuler'>NOT</button>" data-html='true'>
    ACTIVE
</button>