【发布时间】:2023-04-05 12:16:02
【问题描述】:
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 属性再次被填充,原始工具提示与线索提示工具提示一起显示(在 Internet Explorer 中)。
有人有想法吗?
截图
页面加载:
点击/悬停/动作后:
http://tinypic.com/r/16j4ldi/6
我正在使用 jQuery 1.7.2 和 cluetip 1.2.5。
【问题讨论】: