像对viewchild一样装饰的对象上的jquery操作

时间:2017-04-05 14:56:51

标签: jquery angular

是否可以查询Viewchild修饰的对象的DOM,就像我使用jQuery一样?

我必须为孩子的DOM做以下的事情。

Connect-MsolService

1 个答案:

答案 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()