component.css
には<component>
タグ:host
セレクタでアクセスできます。 component.ts
ファイルに直接アクセスする方法はありますか?:host.ts内のホスト同等物
私はViewChild
とparentElement
を使用していますが、ホストDOM要素を取得するより直接的な方法はありますか?
component.css
には<component>
タグ:host
セレクタでアクセスできます。 component.ts
ファイルに直接アクセスする方法はありますか?:host.ts内のホスト同等物
私はViewChild
とparentElement
を使用していますが、ホストDOM要素を取得するより直接的な方法はありますか?
あなたはそれを
class MyComponent {
constructor(private elRef:ElementRef) {}
ngAfterViewInit() {
this.elRef.nativeElement...
}
}
を注入することができます 'parentElement'は何ですか? –
https://www.w3schools.com/jsref/prop_node_parentelement.asp – sanjihan