2

引导工具提示仅显示在焦点上,而不是悬停。工具提示确实正确显示在右侧。使用引导 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'});
4

2 回答 2

1

这是只有Chrome 27才会出现的问题。由于其他版本的Chrome没有问题,其他浏览器使用$('.qinfo').tooltip({'placement':'right','trigger':'hover'});. 没什么可做的。

于 2013-04-26T15:19:33.657 回答
-1

选项触发器是默认悬停和焦点,因此您不必设置那个。

于 2013-04-26T14:32:23.947 回答