qTip 销毁后,如果调用,qTip 不会再次显示

发布于 2024-09-30 12:31:11 字数 359 浏览 5 评论 0原文

我正在使用 jQuery 1.4.2 和 qTip 2.0 pre。

我有一个 qTip,显示对象的 onClick 并使用 mouseleave 关闭。我使用下面的 JS 在 mouseleave 后销毁它。当我单击该对象后,qTip 再也不会显示。如果我删除销毁功能,那么它会按预期工作。

我想在隐藏后销毁它,这样它就不会存储在 DOM 中。

使用JS:

events: {
  hide: function(api, event) {                       
  return $('.qtip').qtip('destroy');
  }
}

我做错了什么?

I am using jQuery 1.4.2 and qTip 2.0 pre.

I have a qTip displaying with an onClick of an object and closing with a mouseleave. I use the JS below to destroy it after the mouseleave. When I click on the object after the qTip never displays again. If I remove the destroy function then it works as expected.

I want to destroy it after hide so it isn't stored on in the DOM.

JS used:

events: {
  hide: function(api, event) {                       
  return $('.qtip').qtip('destroy');
  }
}

What am I doing wrong?

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

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

发布评论

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

评论(1

笨笨の傻瓜 2024-10-07 12:31:11

由于您的 qtip 已损坏,您必须重新设置它。我猜这比混乱的 DOM 更糟糕。

return $('.qtip').qtip('destroy').qtip( recursive init params here - hide refs this function all over again )

由于您无法真正执行此递归定义,因此您需要分解函数和 json 初始化对象。这一切听起来像是一次令人讨厌的黑客攻击。

鉴于这种丑陋,我会投票支持不破坏 qtip。

Since your qtip is destroyed you would have to set it back up again. I am guessing this is worse than the cluttered DOM.

return $('.qtip').qtip('destroy').qtip( recursive init params here - hide refs this function all over again )

Since you can't really do this recursive definition, you will need to break out the function and the json initialization object. This is all starting to sound like a nasty hack.

I would vote for not destroying the qtip given this ugliness.

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