<p *ngIf="heroes.length > 3">There are many heroes!</p>
//我们也可以通过类绑定或样式绑定来显示或隐藏一个元素。
// isSpecial = true
<div [class.hidden]="!isSpecial">Show with class</div>
<div [class.hidden]="isSpecial">Hide with class</div>
<div [style.display]="isSpecial ? 'block' : 'none'">Show with style</div>
<div [style.display]="isSpecial ? 'none' : 'block'">Hide with style</div>//我们也可以通过类绑定或样式绑定来显示或隐藏一个元素。
// isSpecial = true
<div [class.hidden]="!isSpecial">Show with class</div>
<div [class.hidden]="isSpecial">Hide with class</div>
<div [style.display]="isSpecial ? 'block' : 'none'">Show with style</div>
<div [style.display]="isSpecial ? 'none' : 'block'">Hide with style</div>