我想将新的子节点附加after
到父节点,但appendChild
将其附加inside
。这是我所拥有的:
我的component.html
:
<div id="parent" (click)="appendChild()">
parent node
</div>
我的component.ts
:
private appendChild() {
const div = this.renderer.createElement('div');
const text = this.renderer.createText('child node')
this.renderer.appendChild(div, text);
this.renderer.appendChild(document.getElementById("parent"), div)
}
这会插入在节点div
内部创建的新内容,如下所示:parent