如何获取 c:foreach 中单个组件的值?

发布于 2025-01-06 19:40:19 字数 340 浏览 0 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2025-01-13 19:40:19

我不知道这是否是您所需要的,但您可以编写一个像这样的 javascript 函数,

function fun(id){  
     document.getElementById(id) etc
}


<ice:inputText id="${fill.inputText}" onclick="popup.show();"
onblur="fun(this.id);">

您也可以将组件绑定到支持 bean 并获取 id。

I don't know if this is what you need but you could write a javascript function like this

function fun(id){  
     document.getElementById(id) etc
}


<ice:inputText id="${fill.inputText}" onclick="popup.show();"
onblur="fun(this.id);">

you can also bind your component to your backing bean and get the id.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文