3

我正在使用 Fullcalendar 控件,并为其项目定义了工具提示。当项目被删除/移动时,我经常遇到这种情况,但工具提示仍然存在。

我可以通过使用$('.tooltip').hide();按钮点击来解决这个问题。是否有可能在创建新工具提示之前隐藏所有现有工具提示?

 eventRender: function (event, element) {
            element.tooltip({
                html: true,
                container: 'body',
                title: function() {

                    return generateTooltipForFlight(event).html();
                }
            });

           },

工具提示

4

1 回答 1

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>

这段代码对我帮助很大。我希望它也可以帮助你。

于 2013-09-12T16:52:57.127 回答