我正在使用Fullcalendar控件,我为其项目定义了工具提示。我经常会在删除/移动项目时遇到这种情况,但工具提示仍然存在。
我可以通过使用$('.tooltip').hide();
按钮点击来解决此问题。
在创建新工具提示之前是否有可能隐藏所有现有的工具提示?
eventRender: function (event, element) {
element.tooltip({
html: true,
container: 'body',
title: function() {
return generateTooltipForFlight(event).html();
}
});
},
答案 0 :(得分:0)
如果您使用此代码该怎么办:
对于JS
$('body').tooltip({
selector: '[rel=tooltip]'
});
对于元素-html
<i class="icon-info-sign" rel="tooltip"
title="here you can add the message for the tooltip"></i>
这段代码给了我很多帮助。我希望它也可以帮助你。