JSP 和 HTML - 在循环中使用不同名称命名复选框
我的代码中有类似的内容
<% 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设门票是门票的集合或数组
assuming tickets is the collection or array of ticket
这是一个不同的例子。这假设门票是对象列表,并且为每个对象定义了 getValue() 和 getName() 方法。
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.