jQuery   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jquery-ui – 单击后输入具有焦点时,不要关闭工具提示大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
如果输入有焦点,如何才能关闭工具提示它在使用制表符聚焦时有效,但如果我使用鼠标聚焦输入,即使输入具有焦点,也会在鼠标输出关闭工具提示.

我可以

@H_772_9@$('input').tooltip().off("mouSEOver mouSEOut");@H_607_10@

但是这会在悬停时出现不可用的工具提示,当输入有焦点时我只需要使用鼠标输出.

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

解决方法

试试这个:

Working Example

@H_772_9@$("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 } } });@H_607_10@

新的和改进的方法

Better Working Example

@H_772_9@$("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 });@H_607_10@

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

大佬总结

以上是大佬教程为你收集整理的jquery-ui – 单击后输入具有焦点时,不要关闭工具提示全部内容,希望文章能够帮你解决jquery-ui – 单击后输入具有焦点时,不要关闭工具提示所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。