将鼠标悬停在Bootstrap的帮助上

时间:2013-10-06 14:58:27

标签: twitter-bootstrap

当您将鼠标悬停在另一段文本上时,引导程序中显示少量文本的最简单方法是什么? 我找到了使用jquery,css的解决方案,但想知道最简单的方法是什么。

谢谢,

2 个答案:

答案 0 :(得分:1)

一个简单的例子就是

<span class="has-hover" data-toggle="tooltip" title="first tooltip">Hover over me</span>

在您的HTML和

$(".has-hover").tooltip({placement: "bottom"});

在您的js(example in jsfiddle

http://twbs.github.io/bootstrap/javascript/#tooltips

中详细说明了Bootstrap工具提示

答案 1 :(得分:0)

使用HTML“标题”属性

<div>
     Put your mouse on me
</div>

成为

<div title = "you found me!">
     Put your mouse on me
</div>

Live demo