jQuery clue提示:原始工具提示与cluetip工具提示一起显示(2个工具提示)

时间:2012-06-20 14:10:59

标签: jquery tooltip cluetip

我的jQuery clueTip插件存在问题。

我以这种方式初始化插件:

$(function(){
    $("#contentTable > tbody > tr").each(function () {
        $(this).children("td:eq(3)").cluetip({
            splitTitle: '|',
            showTitle: false,
            escapeTitle: true,
            dropShadow: true,
            cursor: 'default',
            cluetipClass: 'info',
            positionBy: 'mouse',
            attribute: 'tooltip'
        });
    });
});

它正常工作,但点击并在我的td元素上悬停几次后,title属性再次填充,原始工具提示与cluetip工具提示一起显示(在Internet Explorer)

有人有想法吗?

截图

页面加载:

http://tinypic.com/r/vowexi/6

点击/悬停/行动后:

http://tinypic.com/r/16j4ldi/6

我正在使用 jQuery 1.7.2 cluetip 1.2.5

1 个答案:

答案 0 :(得分:0)

我已切换到simpletip

我对这个插件没有这个问题,所以这将是我的选择。