我正在尝试设置引导工具提示,但它似乎不起作用。
<p>This is a <a href="#" title="A collection of words.">sentence</a> with a tooltip</p>
和
$(document).ready(function(){
$("a").tooltip();
});
我已经设置了以下jsFiddle
html 似乎已转换为以下内容:
<p>This is a <a href="#" data-original-title="A collection of words.">sentence</a> with a tooltip</p>
工具提示 html 被渲染:
<div class="tooltip fade top in" style="top: -34px; left: 20.5px; display: block; "><div class="tooltip-arrow"></div><div class="tooltip-inner">A collection of words.</div></div>
使用正确的 CSS 样式:
但它从未在浏览器中显示?