我正在使用 Twitter 的 Bootstrap 来实现工具提示。目前,工具提示显示在链接上方。我希望工具提示出现在链接下方。我该怎么做呢?
我正在触发工具提示,它清楚地表明“底部”,但它不想为我工作......
<script>$('#home').tooltip('hide bottom')</script>
我正在使用 Twitter 的 Bootstrap 来实现工具提示。目前,工具提示显示在链接上方。我希望工具提示出现在链接下方。我该怎么做呢?
我正在触发工具提示,它清楚地表明“底部”,但它不想为我工作......
<script>$('#home').tooltip('hide bottom')</script>
$('#tooltip').tooltip({
placement : 'left',
title : 'first tooltip'
});
在<script>
标签内或单独的 JavaScript 文件中使用它。
假设您使用的是最新的 Bootstrap,您将使用“底部”的位置。您可以通过创建工具提示时的选项来执行此操作:$("#tt").tooltip({placement: "bottom"});
或通过元素上的数据属性:<span data-placement="bottom" ...>tooltip!</span>
我相信。
您可以在Bootstrap 工具提示部分找到有关工具提示的更多信息。
在引导网站上,它们显示了工具提示的选项。其中一个选项是placement
可以设置为顶部、底部、右侧或左侧。
因此,当您为工具提示添加脚本时,请选择这样的选项
$('#example').tooltip({placement: "bottom"})