JQuery-UI工具提示:仅对鼠标悬停启用,对focusin禁用

时间:2019-05-16 08:58:54

标签: javascript jquery-ui onmouseover jquery-ui-tooltip focusin

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

1 个答案:

答案 0 :(得分:0)

这有效:

$(document).tooltip().off("focusin focusout");