0

我对jQuery 线索提示插件有疑问。

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

$(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属性再次被填充,并且原始工具提示与线索提示工具提示(在 Internet Explorer 中)一起显示

有人有想法吗?

截图

页面加载:

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

单击/悬停/执行后:

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

我正在使用jQuery 1.7.2线索提示 1.2.5

4

1 回答 1

0

我已经切换到simpletip

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

于 2012-06-22T09:42:48.663 回答