是否可以仅在onmouseover上打开JQuery-UI工具提示,而在focusin事件上不打开它,使其行为更像本机浏览器工具提示?
我尝试了这种解决方案,但是没有用:
$(document).tooltip({
items:".jquery-tooltip",
track:true, show:false, hide:false,
open: function(event, ui) {
if(event.originalEvent.type == "focusin") {
$(document).tooltip("close");
}
},
content: function() {
return "tooltip text here";
}
});
答案 0 :(得分:0)
这有效:
$(document).tooltip().off("focusin focusout");