jquery qTip:使标注停留在那里

发布于 2024-12-04 03:42:43 字数 389 浏览 1 评论 0原文

如何在页面加载时显示 qTip 标注,并且即使我将鼠标悬停在该字段上也保留在那里。本质上,我只想要一个固定的标注,并且使用 qTip 来简化定位和样式设置。

注意:我尝试了“show: {ready: true}”设置,但这只是最初呈现调出。如果将鼠标悬停在关联的目标字段上,标注就会消失。我需要它来显示,期间。

谢谢

​我正在使用最新的 1.*(稳定版本)。

由于某种原因,添加

  hide: { when: 'mouseout', fixed: true },   

似乎没有帮助,也许

  hide: {fixed: true }

我使用这些选项是错误的?

How do I make a qTip callout show when the page is loaded, and ALSO stay there even if I hover over the field. In essence I just want a fixed callout, and am using qTip for its ease of positioning and styling.

Note: I tried the "show: {ready: true}" setting, but this simply initially renders the call-out. If one hovers over the associated target field, the call-out disappears. I need it to show displayed, period.

Thanks

P.S. I'm using the latest 1.* (stable version).

Adding the

  hide: { when: 'mouseout', fixed: true },   

didn't seem to help either for some reason, nor did

  hide: {fixed: true }

Maybe I'm using these options wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

亢潮 2024-12-11 03:42:43

尝试:

$("#tip").qtip({
    hide: false, // Don't specify a hide event
    show: { ready: true } // Show the qtip when ready.
});

Try:

$("#tip").qtip({
    hide: false, // Don't specify a hide event
    show: { ready: true } // Show the qtip when ready.
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文