假设我有一个组件app
和一个组件child
,在App Component模板中我有能力使用
<child-template></child-template>
并且工作正常。
我有另一个js数据表添加创建一个表,我想在表中找到元素并使用ElementRef.nativeElement
以便从typescript代码动态添加。有可能吗?
类似的东西:
element = $(this.el.nativeElement.children[0]);
element.parent().find(".dt-toolbar").child( ---> <child-template> / new ChildComponent()<-----)