Angular4_ get the height of table/div

import { ElementRef, ViewChild } from '@angular/core';

export class viewApp{

      @ViewChild('mainScreen') elementView: ElementRef;
      viewHeight: number;

      constructor() {
      }

      clickMe(){
        this.viewHeight = this.elementView.nativeElement.offsetHeight;
      }
}
Template:

<div class="view-main-screen" #mainScreen></div>


Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326614950&siteId=291194637