0

是否可以使 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";
    }
});
4

1 回答 1

0

这有效:

$(document).tooltip().off("focusin focusout");
于 2019-05-30T14:39:49.717 回答