引导工具提示仅显示在焦点上,而不是悬停。工具提示确实正确显示在右侧。使用引导 2.3.1。data-trigger='focus'
在 上使用也<span>
没有任何效果。在 Firefox 中为我工作。不适用于 Chrome 27。适用于 Chrome 28 (Canary)。
完整的 HTML:
<!doctype html>
<head>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<span class='qinfo' title="Message 1">(?)</span>
<span class='qinfo' title="Message 2">(?)</span>
</body>
JS:
$('.qinfo').tooltip({'placement':'right','trigger':'hover'});