`[innerHTML]` - 缺少html标签

时间:2018-05-10 07:26:35

标签: angular angular5

在我的变量中,我宣称:

title:any="<h2>Arif</h2>";

在我的模板中,我尝试了两种方式:

<content [innerHTML]="title"></content>
<div [innerHTML]="title"></div>

它们都没有h2标签。问题是什么?还有如何使用content元素替换h2标记?

任何人帮助我?

1 个答案:

答案 0 :(得分:0)

我改变了条件:

<div class="popup-overlay" *ngIf="showPopup"></div>
<div class="popupDesc" *ngIf="showPopup">

<div class="popup-overlay" [hidden] = "!showPopup"></div>
<div class="popupDesc" [hidden] = "!showPopup" >

现在innerHTML工作正常。