一、
在ngAfterViewInit()里获取和操作
<div id="show" *ngIf="falg">这是一个FLAG</div>
ngAfterViewInit(){
var show:any=document.getElementById("show")
console.log(show)
}
二、ViewChild获取
1.先命名
<h1 id="app" #app>顶顶顶</h1>
2.获取
import { Component, OnInit ,ViewChild} from '@angular/core';
@ViewChild('app',{static:false}) app:any;
ngAfterViewInit(){
console.log(this.app)
}