如何使块级元素的innerHTML出现在QTip中?
我在我的网页上使用 QTip javascript 库。当用户单击链接(我已将其设置为块级)时,会出现 QTip。
我用 text-indent: -10000px;
隐藏了链接的内部文本。该文本将出现在单击链接后出现的 QTip 中。
我无法将此文本存储在标题属性中,因为标题属性包含其他数据。
如何使用 QTip API 获取被单击元素的innerHTML?我还没有在他们的文档中找到它: http://craigsworks.com/projects/qtip /docs/reference/
我已经尝试
content: {
text: $(this).html(),
}
无济于事。谢谢。
此外,了解当用户将鼠标悬停在链接上时出现另一个 QTip 可能会很有用。其他 QTip 的内容存储在链接的标题属性中。
I am using the QTip javascript library on my web page. When the user clicks on a link (which I have made to be block level), a QTip appears.
I have hidden the inner text of the links with text-indent: -10000px;
. The text will appear in the QTip that appears after clicking on the link.
I cannot store this text in the title attribute since the title attribute contains other data.
How do I use the QTip API to grab the innerHTML of the element being clicked on? I haven't found it in their documentation yet: http://craigsworks.com/projects/qtip/docs/reference/
I have tried
content: {
text: $(this).html(),
}
to no avail. Thanks.
Additionally, it might be useful to know that another QTip appears when the user hovers over the link. The content for this other QTip is stored in the link's title attribute.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样的事情:
Try something like this: