autoClose of tooltipster无效

时间:2014-09-18 08:45:02

标签: javascript jquery html tooltip

在页面加载工具提示器显示,但我希望它保持在那里,除非用户点击工具提示内容中的链接。问题是,当我将鼠标悬停在工具提示器上并向外移动时,不点击链接,工具提示器关闭(我认为autoClose失败)。

我怎样才能阻止这种关闭?

$(document).ready(function(){
        $(".tooltip1").tooltipster ({
                theme: '.tooltipster-light',
                position: 'right',
                animation: 'grow',
                maxWidth: '160',
                autoClose: false,
                interactive: true,
                contentAsHTML: true,
               //timer: 10000,
                delay: 1000,
                content: '<a href="notified" class="tooltip_display" data-remote="true" style="color:#0988E4"><u>Do not show again</u></a>',
                 });
        $(".tooltip1").tooltipster("show");

     });

2 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,但几分钟后我发现我的工具提示版本太旧了,而我所要做的就是更新它并且autoClose工作了......试试看

答案 1 :(得分:0)

我已使用您的代码更新了您的jsfiddle并添加了以下内容以隐藏悬停时的工具提示:

// Hide on hover
$(".tooltip1").hover(function(){
         $(this).tooltipster('hide'); 
});