jQuery 工具工具提示 - 更改标题
jquery 插件工具提示出现问题 (http://flowplayer.org/tools/tooltip/index.html) 我需要更改元素的标题..
reloadTooltip();
$("#example").attr('title', obj.text);
reloadTooltip();
function reloadTooltip(){
$("[title]").tooltip({ position: "bottom right", opacity: 1 });
}
Html 部分:
<span title="text" id="example"></span>
通过我的解决方案,我终于得到了 2 个标题,一个在另一个之上。无样式(忽略 js)是新的。工具工具提示标题尚未更改。
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
这对我有用:
This worked for me:
动态更改标题的另一种解决方案是使用 onBeforeShow 事件:
this
引用事件函数上的工具提示对象Another solution to change the title dynamically is to use the onBeforeShow event:
this
refers to the tooltip object on the event function除了重新初始化工具提示之外,没有什么对我有用:
之前涉及 getTip() 的答案要求工具提示至少显示一次;否则,getTip() 会产生 null。
使用 OnBeforeShow 几乎对我有用,但我不知道如何取消绑定事件,以便它不会在每次显示时执行。
由于某种原因,更改标题对我来说不起作用,可能是因为我使用的是自定义布局。
Nothing worked for me but to reinitialize the tooltip:
The previous answers involving getTip() require that the tooltip be shown at least once; otherwise, getTip() yields a null.
Using the OnBeforeShow almost worked for me, but I couldn't figure out how to unbind the event so that it wouldn't execute every single time I showed.
Changing the title did not work for me for some reason, possibly due to the fact I was using a custom layout.
尝试通过调用 jQuery 的 data("title") 方法来修改标题值。
Try to modify the title value by calling jQuery's data("title") method.
我也为此苦苦挣扎。这段代码对我有用:
请注意大写的
T
。小写的T
不起作用。I also struggled with this. And this code worked for me:
Please note the upper case
T
. Lower caseT
will not work.对我来说最好的工具提示!此工具提示类似于 Gmail
位于头站点:
在 HTML 上:
在 Javascript 代码上:
访问演示 jsfiddle
Best tooltip for me! This tooltip like on Gmail
on head site:
On HTML:
On Javascript codes:
Visit Demo jsfiddle
以上所有方法均不适用于最新版本的tooltipster,正确的方法是:
All of the above doesn't work with the latest version of tooltipster, the correct way is:
知道了 !
根据最近版本的工具提示(从 v2.3.1 开始)https://github .com/twitter/bootstrap/blob/master/js/bootstrap-tooltip.js#L272
您需要设置属性(而不是属性)“data-original-title”,因为这是工具提示当前正在使用的属性。
这是一个黑客,但我希望它对你有用,就像对我有用一样。
got it !
according to recently version of tooltip (as of v2.3.1) https://github.com/twitter/bootstrap/blob/master/js/bootstrap-tooltip.js#L272
you need to set the attribute (not the property) 'data-original-title' because this one is that tooltip is currently using.
It's a hack but I hope it works for you as it worked for me.
我也要做同样的事情。我查看了工具提示插件代码,发现了更新工具提示的快速且简单的方法。该插件删除标题属性并将该内容放入名为 tooltipText 的元素属性中。在 jQuery 1.6+ 中,可以像这样操作:
该插件在 1.3 版本中的第 55 行设置了 tooltipText 属性(注意大写)。据我所知,以这种方式完成的更改是即时的。
如果进行直接元素操作,工具提示内容位于:
I'm about to do the same thing. I looked through the Tooltip plugin code, and discovered as quick and easy way to update the tooltip. The plugin removes the title attribute and puts that content into an element property called tooltipText. In jQuery 1.6+, it can be manipulated like so:
The plugin sets the tooltipText property (note the capitalization) at line 55 in version 1.3. Changes done this way are instantaneous as far as I can tell.
If doing direct element manipulation, the tooltip content is at:
不知道你是否还在寻找这个问题的答案,但我刚刚花了几个小时尝试对同样的事情进行排序,并在 API 中找到了答案(一旦你找到它们,它们总是很简单!)文档。
无论您首先在哪个元素上设置工具提示,都可以从中获取工具提示 API 并设置新值。即,如果您在 id 为“myTip”的元素上设置工具提示
,瞧。
您不需要删除标题(并且无论如何也不应该删除,因为工具提示是延迟初始化的)。而是使用 cancelDefault 配置:
http://flowplayer.org/tools/tooltip/index.html
Don't know if you are still looking for the answer to this but I have just spent a good couple of hours trying to sort the same thing and have found the answer (simple as they always are once you find them!) in the API documentation.
Whatever the element is that you set the tooltip on in the first place, get the tooltip API from it and set the new value. i.e. if you set the tooltip on an element with id "myTip"
Et voila.
You shouldn't need to remove the title (and shouldn't anyway as tooltips are lazy initialised). Instead use cancelDefault configuration:
http://flowplayer.org/tools/tooltip/index.html
所有其他选项在最新版本的 tooltipster (3.3.0) 上均不起作用
我发现这个命令有效:
All the other options didn't work on the last release of tooltipster (3.3.0)
I found this command work:
这个怎么样?
我不知道这是否是最好的方法,但我认为它可能适合您。
obj.text 正确吗? obj.text 中有什么?
How about this?
I don't know if it's the best approach but I think it might work for you.
Is the obj.text correct? What comes in obj.text ?