如何使块级元素的innerHTML出现在QTip中?

发布于 2024-12-25 08:29:53 字数 546 浏览 0 评论 0原文

我在我的网页上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平定天下 2025-01-01 08:29:53

尝试这样的事情:

(function($) {
    var $link = $('yourLink'),
        value = $link.html();

    $(function() {
        $link.qtip({
            content: {
                text: value
            }
        });
    });        
})(jQuery);

Try something like this:

(function($) {
    var $link = $('yourLink'),
        value = $link.html();

    $(function() {
        $link.qtip({
            content: {
                text: value
            }
        });
    });        
})(jQuery);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文