在component.css
中,您可以使用<component>
选择器访问:host
代码。
有没有直接的方式在component.ts
文件中访问它?
我知道使用ViewChild
和parentElement
,是否有更直接的方法来获取主机DOM元素?
答案 0 :(得分:2)
你可以注射它
class MyComponent {
constructor(private elRef:ElementRef) {}
ngAfterViewInit() {
this.elRef.nativeElement...
}
}