Angular 2 div滚动事件,高度为null

时间:2016-04-14 08:19:02

标签: angular

Angular 2滚动事件获取高度为空。

[sample]: https://plnkr.co/edit/RZSQkd0nqolYv3NBvArG?p=preview

1 个答案:

答案 0 :(得分:1)

Plunker example

似乎你想要的是

  onScroll(){
    console.log('clientHeight: ' + this._el.clientHeight);
    console.log('offsetHeight: ' + this._el.offsetHeight);
  }

另见Get div height with plain JavaScript

getAttribute()读取属性。属性在DOM中可见。 clientHeight是一个属性。

另见Properties and Attributes in HTML