*ngIf
*ngIf=” “
# app.component.html<div *ngFor="let item of list"><div *ngIf="item>3">{{item}}</div></div>
# app.component.tsimport { Component } from '@angular/core';@Component({//根主键selector: 'app-root',templateUrl: './app.component.html',styleUrls: ['./app.component.css']})export class AppComponent {title = 'my-app';list:Array<number> = [1,2,3,4,5,6];handleClick():void{console.log(this.title);this.title = 'change'}}
