0

My brain has gone on holiday. I have a standard bootstrap install; what am I missing when trying to create this simple tooltip?

<a href="#" data-toggle="tooltip" title="first tooltip">Hover over me</a>

Same issue on bootply: http://bootply.com/72237

4

1 回答 1

3

在您的代码options中未定义。

$('a').tooltip();

并且工具提示位于链接上方,因此它在 bootply 上几乎不可见。添加data-placement="bottom"然后它将在示例中可见。

bootply 的工作示例:http: //bootply.com/72242

于 2013-08-06T13:09:08.073 回答