gpt4 book ai didi

qtip2 - 当鼠标悬停在提示上方时,如何防止 jquery.qtip2 工具提示隐藏?

转载 作者:行者123 更新时间:2023-12-03 12:02:45 26 4
gpt4 key购买 nike

使用 jquery qTip2用于工具提示。

我有一个带有链接的工具提示。如果用户的鼠标进入提示(而不是触发器),我希望提示保持打开状态。似乎无法在 documentation 中弄清楚如何做到这一点……

最佳答案

如果您希望它在鼠标悬停并进入提示时保持可见,但仍希望它在鼠标移出时关闭,请使用固定和延迟选项 described in the documentation here :

$('.selector').qtip({
content: {
text: 'I hide on mouseout, but you can mouse into me within 500ms',
},
hide: {
fixed: true,
delay: 500
}
});

hide 参数有很多选项。例如,如果您不想无限期地隐藏它,只需将 hide 设置为 false:
$('.selector').qtip({
content: {
text: 'I never hide',
},
hide: false
});

如果您希望它隐藏在不同的事件上,例如单击提示之外的任何位置,请显式设置事件:
$('.selector').qtip({
content: {
text: 'I hide when you click anywhere else on the document',
},
hide: {
event: 'unfocus'
}
});

如果您希望它在单击触发器时隐藏,请指定单击事件:
$('.selector').qtip({
content: {
text: 'I hide when you click the tooltip trigger',
},
hide: {
event: 'click'
}
});

具体见 the "hide" options documentation了解更多信息。

关于qtip2 - 当鼠标悬停在提示上方时,如何防止 jquery.qtip2 工具提示隐藏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7249185/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com