简体   繁体   English

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

[英]jQuery clueTip: original tooltip is shown together with the cluetip tooltip (2 tooltips)

I have a problem with the jQuery clueTip plugin. 我的jQuery clueTip插件有问题。

I'm initialize the plugin in this way: 我以这种方式初始化插件:

$(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'
        });
    });
});

It is working, but after clicking and hovering a few times over my td elements, the title attribute is filled again and the original tooltip is displayed together with the cluetip tooltip (in Internet Explorer) . 它正在工作,但是在单击并悬停了我的td元素几次后, title属性再次被填充, 原始工具提示与cluetip工具提示一起显示(在Internet Explorer中)

Does anybody have an idea? 有人有主意吗?

Screenshots 屏幕截图

Page Load: 页面加载:

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

After clicking/hovering/acting: 单击/悬停/操作后:

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

I'm using jQuery 1.7.2 and cluetip 1.2.5 . 我正在使用jQuery 1.7.2cluetip 1.2.5

I've switched to simpletip . 我已经切换到simpletip

I have no such a problem with this plugin, so this will be my choice. 我对此插件没有任何问题,所以这将是我的选择。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM