Angular 引导工具提示在*ngIf上不起作用

Angular 引导工具提示在*ngIf上不起作用,angular,tooltip,Angular,Tooltip,我在HTML文件中有以下代码 <div class="col-md-10" *ngIf="isEdit"> <input type="text" maxlength="255" data-toggle="tooltip" data-placement="bottom" data-original-title="Optional description of the Plan" class="form-control"> </div> 如果我将鼠标悬

我在HTML文件中有以下代码

<div class="col-md-10" *ngIf="isEdit">
   <input type="text" maxlength="255" data-toggle="tooltip" data-placement="bottom" data-original-title="Optional description of the Plan" class="form-control">
</div>


如果我将鼠标悬停在输入框上,则不会显示工具提示;如果我删除*ngIf=“isEdit”,则会显示工具提示,而不是
ngIf
Try
[hidden]
而不是
ngIf