<!DOCTYPE html>
<html>
<head>
<title>Bootstrap实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://apps.bdimg.com/libs/bootstrap/3.3.0/css/bootstrap.min.css">
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script src="https://apps.bdimg.com/libs/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<style>
a {
font-size: 25px;
}
</style>
</head>
<body>
<div class="container">
<h3>Tooltip Methods</h3>
<a href="#" data-toggle="tooltip" title="Hooray!">Tooltip实例</a>
<div>
<p>Click on the buttons to manually control the tooltip above:</p>
<button type="button" class="btn btn-primary">Show</button>
<button type="button" class="btn btn-warning">Hide</button>
<button type="button" class="btn btn-success">Toggle</button>
<button type="button" class="btn btn-danger">Destroy</button>
</div>
</div>
<script>
$(document).ready(function(){
$(".btn-primary").click(function(){
$("[data-toggle='tooltip']").tooltip('show');
});
$(".btn-warning").click(function(){
$("[data-toggle='tooltip']").tooltip('hide');
});
$(".btn-success").click(function(){
$("[data-toggle='tooltip']").tooltip('toggle');
});
$(".btn-danger").click(function(){
$("[data-toggle='tooltip']").tooltip('destroy');
});
});
</script>
</body>
</html>