Spring MVC 表选定行
在 Spring MVC 2.5 应用程序中,我使用 spring
组件,并在此表单中呈现带有 c:forEach
的表格。
在每一行中都放置了一个提交按钮。如果我通过单击一个按钮开始提交,我想知道哪个按钮已处理该提交。
<form:form commandName="formObject">
<table class="data-table" cellpadding="1" cellspacing="1" border="0">
<thead>
<tr>
</tr>
</thead>
<c:forEach items="${list}" var="document" varStatus="row">
<tr>
<td>
<input type="submit" value="${document.title}"/>
<td>
</tr>
</c:forEach>
</table>
</form:form>
谢谢。
in a Spring MVC 2.5 application i'm using a spring <form:form>
component and in this form a table with c:forEach
is rendered.
In each row a submit button is placed in. If i start a submit by clicking a button i would like to knwo, which button has processed the submit.
<form:form commandName="formObject">
<table class="data-table" cellpadding="1" cellspacing="1" border="0">
<thead>
<tr>
</tr>
</thead>
<c:forEach items="${list}" var="document" varStatus="row">
<tr>
<td>
<input type="submit" value="${document.title}"/>
<td>
</tr>
</c:forEach>
</table>
</form:form>
THX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为提交按钮命名。您可以像处理任何其他参数一样处理来自该按钮的请求参数。不过,某些浏览器可能会以不同的方式处理它们给出的值。
Give the submit button a name. You can handle the request parameter from that button like any other parameter. Some browser might handle the value they give differently though.