是否可以查询Viewchild修饰的对象的DOM,就像我使用jQuery一样?
我必须为孩子的DOM做以下的事情。
Connect-MsolService
答案 0 :(得分:0)
是的,有可能,
@ViewChild('someComponent') someComponent: SomeComponent;
ngAfterViewInit() {
document.querySelectorAll(..);
document.getElementById(..);
document.getElementByClass(..);
// also nativeElement property can be used as
this.someComponent.nativeElement.children
}
<element #someComponent> </element>
更新:
您可以使用组件方法,因为您已将其声明为viewChild为
this.someComponent.someMethod()