本文介绍了Angular2如何获取动态生成的HTML元素的引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的输入是动态生成的:
I have this inputs generated dynamically:
<div *ngFor="let cell of column; let i = index;">
<!-- Material design input-->
<md-input id="my-input-{{i}}">
</md-input>
</div>
请注意 id=my-input-{{i}}
,我想基于此动态ID获取对DOM元素的引用.此输入可以是3、6或更多输入,因此我需要动态访问ID并保留它.
Please notice id=my-input-{{i}}
I would like to get a reference to the DOM element based on this dynamic id. This input can be 3, 6 or more inputs so I need to access the id dynamically and get a hold to it.
推荐答案
唯一的响应是
let elem:Element = document.getElementById("myProgrammaticallyChosenIndex")
let elem:Element = document.getElementById("myProgrammaticallyChosenIndex")
不需要其他棱角怪异的仪式
No other angular weird ceremony needed
在4+角上进行了测试
这篇关于Angular2如何获取动态生成的HTML元素的引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!