仅在单击时打开 Jquery-ui 工具提示

Open Jquery-ui Tooltip only on click

我有这个代码

function DrawTipsProgress(postid, ajaxurl) {

    var data = {
        action: 'ajax_action',
        post_id: postid
    }

    jQuery('#dashicon-' + postid).on("click", function () {

        jQuery.post(ajaxurl, data, function(response) {

            jQuery('#dashicon-' + postid).tooltip({

                position: { my: 'center bottom' , at: 'center top-10' },
                tooltipClass: "myclass",
                content: response

            });

            jQuery('#dashicon-' + postid).tooltip('open');

        });

    });

}

第一次点击时,它按方面工作。 如果稍后我尝试再次悬停按钮而不单击它再次弹出工具提示,并且单击只是执行 ajax 调用但不会打开工具提示。

悬停时触发工具提示。在您的代码中,在 'click' 事件发生之前它不会绑定到元素,所以它并不是真正导致它显示的点击......它是点击后的悬停。我相信你需要做的就是使用 enable and disable。这是一个示例 fiddle。 http://jsfiddle.net/ecropolis/bh4ctmuj/

<a href="#" title="Anchor description">Anchor text</a>

$('a').tooltip({
    position: { my: 'center bottom' , at: 'center top-10' },
    tooltipClass: "myclass",
    disabled: true,
    close: function( event, ui ) { 
        $(this).tooltip('disable'); 
        /* instead of $(this) you could also use $(event.target) */
    }
});

$('a').on('click', function () {
     $(this).tooltip('enable').tooltip('open');
});