就像问题一样 – 我有一个子组件,我想知道父元素的宽度是多少.我怎样才能做到这一点?
注入元素本身:
原文链接:https://www.f2er.com/angularjs/141703.htmlconstructor(private elRef: ElementRef){}
访问本机元素父级:
ngOnInit() { console.log(this.elRef.nativeElement.parentElement); }