Angular4_获取table/div的高度

前端之家收集整理的这篇文章主要介绍了Angular4_获取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>
原文链接:https://www.f2er.com/angularjs/144686.html

猜你在找的Angularjs相关文章