載入程式 .popover("destroy") 方法


使用 popver(“detroy”)銷燬 popover。

它隱藏 popover −

popover('destroy');

該方法用於銷燬 popover −

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

你可以嘗試執行以下程式碼來實現 popver(“destroy”)方法 −

示例

現場演示

<!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://ajax.googleapis.com/ajax/libs/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="Selected Students" data-content="Amit, Raman, Aman">Examination</a>
    <div>
      <p>Here's the result:</p>
      <button type="button" class="btn btn-default">Result</button>
      <button type="button" class="btn btn-danger">Refresh</button>
    </div>  
  </div>

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

</body>
</html>

更新於: 17-Jun-2020

1K+ 觀看次數

開啟您的 職業生涯

透過完成課程獲得認證

開始
廣告