HTML
<div #container id="container">
<a id="A"></a>
<a id="B"></a>
<a id="C"></a>
</div>
我想获取div“容器”中的所有定位标记,并从component.ts文件中向其添加click事件。我在Angular中尝试了以下解决方案,但不确定这是否合适。请指导。
@ViewChild('container ') container : ElementRef;
this.container .nativeElement.childNodes.forEach(element => {
console.log(element);
});
如果您有更好的解决方案,请进行指导。