hide.bs.popover引导事件

当弹出框即将被隐藏时,将触发hide.bs.popover事件。

添加一个单击按钮以使用popver(“ hide”)方法隐藏popver-

$(".btn-default").click(function(){
  $("[data-toggle='popover']").popover('hide');
});

单击按钮后,触发popover事件并使用Bootstrap中的hide.bs.popver事件生成警报-

$("[data-toggle='popover']").on(hide.bs.popover', function(){
  alert('Popover is about to be hidden!');
});

您可以尝试运行以下代码来实现hide.bs.popover事件-

示例

<!DOCTYPE html>
<html>
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  </head>

<body>

<div class="container">
  <a href="#" data-toggle="popover" title="Employee ID" data-content="E001, E004, E008">Awards</a>
  <div>
    <p>Here's the list:</p>
    <button type="button" class="btn btn-primary">List (Display)</button>
    <button type="button" class="btn btn-default">List (Hide)</button>
  </div>  
</div>

<script>
$(document).ready(function(){
  $(".btn-primary").click(function(){
    $("[data-toggle='popover']").popover('show');
  });
  $(".btn-default").click(function(){
    $("[data-toggle='popover']").popover('hide');
  });
  $("[data-toggle='popover']").on('hide.bs.popover', function(){
    alert('The popover is about to be hidden.');
  });
  $("[data-toggle='popover']").on('hidden.bs.popover', function(){
    alert('The popover is now hidden.');
  });
});
</script>

</body>
</html>