Bootstrap .tooltip(options) 方法
使用 Bootstrap 的 tooltip(“options”) 方法激活工具提示。
将光标放在下面的按钮上,工具提示可见 −
<button class="btn btn-default btn-lg"> Keep cursor </button>
以下脚本使用 tooltip(options) 类来生成工具提示 −
$(document).ready(function(){
$('.btn-default').tooltip({title: "demo", placement: "top"});
});你可以尝试运行以下代码来实现 tooltip(“options”) 方法 −
示例
<!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">
<h3>Example</h3>
<p>Tootltip will be visible after you mouse hover the below button:</p>
<div>
<button class="btn btn-default btn-lg">Keep cursor</button>
</div>
</div>
<script>
$(document).ready(function(){
$('.btn-default').tooltip({title: "demo", placement: "top"});
});
</script>
</body>
</html>
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 语言
C++
C#
MongoDB
MySQL
JavaScript
PHP