我有这个功能设置
var $this = $(this);
if (msg == null) {
$this.tooltip('destroy');
}
else
{
$this.tooltip({'title': msg, 'placement': 'right', 'trigger': 'manual'});
$this.tooltip('show');
}
工具提示显示正常,销毁行抛出错误data[option] is not a function
。如果我将它更改为tooltip('hide')
工具提示隐藏本身,我就无法让它自行删除。谁能帮我解决这个问题?