禁用 jQuery qTip 鼠标事件
如何防止 qTip 在 mouseenter mouseleave 事件上自动显示和隐藏工具提示?
How can I keep qTip from automatically showing and hiding the tooltips on mouseenter mouseleave events?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据文档,您可以注册“beforeShow”事件,返回 false 将停止显示工具提示。
所以类似这样的事情
As per the docs, you can register for the "beforeShow" event and returning false will stop the tooltip from showing.
So something along the lines of this
您可以在
hide
选项中指定导致工具提示隐藏的事件:或者您可以尝试在
show
选项中设置when
属性为假:You can specify the events that will cause the tooltip to hide in the
hide
option:or you can try setting the
when
attribute in theshow
option to false:这就是我所拥有的和工作的。
它禁用鼠标事件,并且工具提示由
qtip("show") 触发
This is what I have and works.
It disables mouse events and tool tips is trigger by
qtip("show")