JavaScript 到活动 Twitter Bootstrap 工具提示
我正在使用 Twitter Bootstrap 的 工具提示,但自从它们移动后我遇到了问题远离特威普西。页面中包含正确的 JavaScript。
假设我有以下内容:
<p><a href="#" rel="tooltip" data-original-title="hello">hover on me</a></p>
我需要使用什么确切 JavaScript 来显示工具提示?
提前致谢!
- 凡妮莎
I'm playing around with Twitter Bootstrap's Tooltips, but am having problems since they moved away from Twipsy. The correect JavaScript is included in the page.
Let's say I have the following:
<p><a href="#" rel="tooltip" data-original-title="hello">hover on me</a></p>
What is the exact JavaScript I need to use to make the tooltip appear?
Thanks in advance!
- Vanessa
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要为所有必须具有工具提示的元素显式运行
.tooltip()
。例如,这将起作用:You need to explicitly run
.tooltip()
for all elements that have to have tooltip. For example, this will work:对于您的示例,它只是:
但根据文档,您应该使用
title
属性,而不是data-original-title
。该属性是由 Bootstrap 的工具提示代码添加的。也不需要rel="tooltip"
。你的代码应该是:
HTML:
JS:
For your example it will just be:
but according to the documentation, you should use the
title
attribute, notdata-original-title
. That attribute is added by Bootstrap's tooltip code. Also there is no need forrel="tooltip"
.Your code should be:
HTML:
JS:
在 Bootstrap 中,我们还需要手动初始化
其文档中提到的工具提示。
In Bootstrap, We need to manually initialize Tooltips
its mentioned in their Documentation also.
你需要准确地
you need exactly to