gpt4 book ai didi

jquery-ui - 单击后输入具有焦点时不要关闭工具提示

转载 作者:行者123 更新时间:2023-12-04 23:23:15 26 4
gpt4 key购买 nike

如果输入具有焦点,如何使工具提示不关闭?它在使用选项卡获得焦点时有效,但如果我使用鼠标专注于输入,工具提示将在 mouseout 上关闭。即使输入有焦点。

我可以

$('input').tooltip().off("mouseover mouseout");

但这将禁用悬停时的工具提示,我只需要禁用 mouseoutinput有重点。

http://jsfiddle.net/3dX6d/2/
http://jsfiddle.net/3dX6d/3/

最佳答案

尝试这个:

Working Example

$("input").tooltip({
close: function (event, ui) { //when the tooltip is supposed to close
if ($('input').is(':focus')) { // check to see if input is focused
$('input').tooltip('open'); // if so stay open
}
}
});

新的和改进的方法:

Better Working Example
$("input").tooltip({
hide: {
effect: 'explode'// added for visibility
}
}).mouseleave(function () { // on mouse leave
if ($('input').is(':focus')) { // if input is focused
ui.tooltip.preventDefault(); //prevent the tooltip's default behavior
$('input').tooltip('open'); // leave the tooltip open
}
}).focusout(function () { // on focus out
$('input').tooltip('close'); // close the tooltip
});

API 文档:
:focus
event.preventDefault()
.focusout()
open method
close event

关于jquery-ui - 单击后输入具有焦点时不要关闭工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18495216/

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