如何仅在单击鼠标时正确显示 JQuery 工具工具提示?
每当用户单击菜单项时,我想显示工具提示:
// Initialize tooltips for each menu_item
$(".menu_item_tooltip_link a.tooltip").tooltip({
opacity: 1.0,
position: "bottom center",
effect: "slide",
direction: "bottom",
offset: [0, 0],
relative: true,
events: { def: "click,mouseout", tooltip: "mouseenter" }
});
工具提示永远不应该被隐藏,除非用户单击工具提示的关闭按钮:
$(".menu_item_tooltip_close").click(function () {
$(this).parents(".menu_item_tooltip:first").hide();
});
一切正常,但是当工具提示关闭并且光标停留在触发的元素中时工具提示只有在我离开项目的边界并再次单击它时才会显示。
知道如何解决这个问题吗?
Whenever a user clicks a menu item I want to show a tooltip:
// Initialize tooltips for each menu_item
$(".menu_item_tooltip_link a.tooltip").tooltip({
opacity: 1.0,
position: "bottom center",
effect: "slide",
direction: "bottom",
offset: [0, 0],
relative: true,
events: { def: "click,mouseout", tooltip: "mouseenter" }
});
The tooltip should never be hidden, unless the user clicks the tooltip's close button:
$(".menu_item_tooltip_close").click(function () {
$(this).parents(".menu_item_tooltip:first").hide();
});
Everything is working fine, but when the tooltip is closed and the cursor stays in the element that triggered the tooltip it will not be shown until I leave the bounds of the item and click it again.
Any idea how to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己找到了解决方案。问题是使用 JQuery hide() 函数而不是 api hide() 函数。它的工作原理如下:
I found the solution myself. The problem was using the JQuery hide() function instead of the api hide() function. Here is how it works: