Jquery工具提示,从其他属性获取数据
由于我的页面有其他使用 title 属性的 jquery 插件,所以我的 jquery 工具提示是否可以从“title”以外的其他属性获取数据? http://flowplayer.org/tools/tooltip/index.html#configuration
<span class="something" title="This is title" otherattr="This is the tooltips"></span>
Due to my page have other jquery plugin that use title attribute, so is that possible for my jquery tooltips to get data from other attribute other than "title"?
http://flowplayer.org/tools/tooltip/index.html#configuration
<span class="something" title="This is title" otherattr="This is the tooltips"></span>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果我正确理解 jTools 工具提示文档,如果您通过 $("[title]") 以外的选择器设置工具提示,它将使用紧随触发器之后的元素作为工具提示内容。
所以你可以这样做:
If I understand jTools Tooltip documentation correctly, if you setup the tooltip by a selector other then $("[title]") it will use the element immediately following the trigger as the tooltip content.
So you can do something like this:
您可以指定一个函数作为工具提示的内容,并以编程方式从属性中获取内容。在这种情况下,您需要属性“otherattr”,因此您可以尝试以下操作:
我必须深入研究一些源代码才能弄清楚这个问题,默认情况下,可以通过执行找到工具提示的“内容”
并查看它返回:
所以只需编写自己的函数即可,而不要使用默认函数。希望有帮助!
You can specify a function as the content for the tooltip and programmatically get the content from the attribute. In this case, you wanted the attribute 'otherattr', so you can try the following:
I had to dig through some source code to figure this one out, by default the tooltip's 'content' can be found by doing
and see that it returns:
So just write your own instead of using the default function. Hope that helps!