如何获取 c:foreach 中单个组件的值?
我已经使用 c:foreach 来迭代并显示我的输入文本,其中每个输入文本都有唯一的 id,我如何获取特定组件或用户选择的组件的单独 id?
<c:forEach items="${gapMatch.text}" var="fill">
<ice:outputText value="${fill.outputText}" />
<ice:inputText id="${fill.inputText}" onclick="popup.show();" >
</c:forEach>
我的托管 bean 中需要此输入文本 id。
I have used c:foreach to iterate and display my inputtext where each inputtext has unique id, how do i get the individual id of the particular component or the one which user selected?
<c:forEach items="${gapMatch.text}" var="fill">
<ice:outputText value="${fill.outputText}" />
<ice:inputText id="${fill.inputText}" onclick="popup.show();" >
</c:forEach>
I need this input text id in my managed bean.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道这是否是您所需要的,但您可以编写一个像这样的 javascript 函数,
您也可以将组件绑定到支持 bean 并获取 id。
I don't know if this is what you need but you could write a javascript function like this
you can also bind your component to your backing bean and get the id.