Bootstrap .popover(“ destroy”)方法
使用popver(“detroy”)销毁popover。
它隐藏了弹出窗口-
popover('destroy');该方法用于销毁弹出窗口-
$(".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://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="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>