JSP 和 HTML - 在循环中使用不同名称命名复选框

发布于 2024-10-11 20:54:55 字数 272 浏览 1 评论 0原文

我的代码中有类似的内容

<% while (i.hasNext()) {
     Object obj = i.next();
        ...
%>
        ...
     <input type="checkbox" name="ticketCheck"/>
        ...

<% } %>

如何使名称成为 TicketCheck1、ticketCheck2 等,以便我可以引用显示的相应对象?

I have something like this in my code

<% while (i.hasNext()) {
     Object obj = i.next();
        ...
%>
        ...
     <input type="checkbox" name="ticketCheck"/>
        ...

<% } %>

How can I make the names become ticketCheck1, ticketCheck2 etc so I can reference a corresponding object that displays?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

丿*梦醉红颜 2024-10-18 20:54:55

假设门票是门票的集合或数组

      <c:forEach var="ticket" items="${tickets}">
        <TR>
           <input type="checkbox" name="${ticket}"/>
        </TR>
      </c:forEach>

assuming tickets is the collection or array of ticket

      <c:forEach var="ticket" items="${tickets}">
        <TR>
           <input type="checkbox" name="${ticket}"/>
        </TR>
      </c:forEach>
情归归情 2024-10-18 20:54:55

这是一个不同的例子。这假设门票是对象列表,并且为每个对象定义了 getValue() 和 getName() 方法。


<c:forEach var="item" items="${tickets}">
...
...
<input type="checkbox" value="${item.value}" name="${item.name}"/>
...
...

Here is a different example. This assumes that tickets is a list of objects and that for each object there is defined a getValue() and getName() method.


<c:forEach var="item" items="${tickets}">
...
...
<input type="checkbox" value="${item.value}" name="${item.name}"/>
...
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文