当您将鼠标悬停在另一段文本上时,引导程序中显示少量文本的最简单方法是什么?我找到了使用 jquery、css 的解决方案,但想知道最简单的方法是什么。
谢谢,
当您将鼠标悬停在另一段文本上时,引导程序中显示少量文本的最简单方法是什么?我找到了使用 jquery、css 的解决方案,但想知道最简单的方法是什么。
谢谢,
一个简单的例子会有
<span class="has-hover" data-toggle="tooltip" title="first tooltip">Hover over me</span>
在您的 HTML 和
$(".has-hover").tooltip({placement: "bottom"});
在你的 js中(jsfiddle 中的示例)
引导工具提示在http://twbs.github.io/bootstrap/javascript/#tooltips有详细解释
使用 HTML“标题”属性
<div>
Put your mouse on me
</div>
变成
<div title = "you found me!">
Put your mouse on me
</div>