Я хочу добавить HTML-контент в div ('single-pane'), используя insertAdjacentHTML, но ничего не происходит.Не уверен, что мне здесь не хватает.
Вот мой HTML-контент, который я пытаюсь добавить ---> component.html
<div #notification class="notification-top-bar" style="display: block;">
</div>
Вот мой машинописный код, куда я добавляю ---> component.ts
export class SiteNotificationComponent implements OnInit {
@ViewChildren('notification') private notificationsElements: QueryList<ElementRef>;
parentClass: any;
constructor() {}
ngOnInit() {}
ngAfterViewInit() {
this.parentClass = document.getElementsByClassName('single-pane')[0];
this.parentClass.insertAdjacentHTML('afterbegin', 'notificationsElements');
}
}