我的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/16j4ldi/6
我正在使用 jQuery 1.7.2 和 cluetip 1.2.5 。