Angular 2滚动事件获取高度为空。
[sample]: https://plnkr.co/edit/RZSQkd0nqolYv3NBvArG?p=preview
答案 0 :(得分:1)
似乎你想要的是
onScroll(){
console.log('clientHeight: ' + this._el.clientHeight);
console.log('offsetHeight: ' + this._el.offsetHeight);
}
另见Get div height with plain JavaScript
getAttribute()
读取属性。属性在DOM中可见。 clientHeight
是一个属性。