我在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”,那么它将显示工具提示
答案 0 :(得分:0)
在 TS 文件中将 isEdit
设置为 true
。