使用Bootstrap .popover(“ hide”)方法隐藏弹出窗口

要隐藏显示的弹出窗口,请使用popover(“ hide”)方法。

使用这样的方法隐藏弹出窗口-

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

您可以尝试运行以下代码来实现popover(“ hide”)方法-

示例

<!DOCTYPE html>
<html lang="en">
  <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">
    <h3>Example</h3>
    <a href="#" data-toggle="popover" title="Demo Header" data-content="这是演示文字!">Info</a>
    <div>
      <p>The following is a demo button:</p>
      <button type="button" class="btn btn-default">Display</button>
      <button type="button" class="btn btn-primary">Hide</button>
    </div>  
  </div>

<script>
  $(document).ready(function(){
    $(".btn-default").click(function(){
      $("[data-toggle='popover']").popover('show');
    });
    $(".btn-primary").click(function(){
      $("[data-toggle='popover']").popover('hide');
    });
  });
</script>

</body>
</html>