2

我正在使用引导工具提示,但我似乎无法弄清楚如何创建像示例网站上那样酷的 css 透明工具提示。我的只是显示为灰色的工具提示。

我可以通过标签属性设置样式还是必须通过 jquery/js 来设置样式,如果可以的话怎么做?

    <a href="#" data-toggle="tooltip" title="tooltip">tooltip</a>

Bootply -> http://www.bootply.com/68686

4

1 回答 1

1

根据引导文档

For performance reasons, the tooltip and popover data-apis are opt in, meaning you must initialize them yourself.

那是因为您可能在页面中有很多工具提示,这可能会影响性能。

所以,基本上,你需要把你的 JS 这个:

$("[data-toggle='tooltip']").tooltip();
于 2013-07-19T20:36:10.177 回答