一、

在ngAfterViewInit()里获取和操作

  1. <div id="show" *ngIf="falg">这是一个FLAG</div>
  1. ngAfterViewInit(){
  2. var show:any=document.getElementById("show")
  3. console.log(show)
  4. }

二、ViewChild获取

1.先命名

  1. <h1 id="app" #app>顶顶顶</h1>

2.获取

  1. import { Component, OnInit ,ViewChild} from '@angular/core';
  2. @ViewChild('app',{static:false}) app:any;
  3. ngAfterViewInit(){
  4. console.log(this.app)
  5. }