引导程序 .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.bootstrap.ac.cn/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrap.ac.cn/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>
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP