是否可以使 JQuery-UI 工具提示仅在 onmouseover 而不是在 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";
}
});