Spring MVC 表选定行

发布于 2024-08-31 01:50:30 字数 647 浏览 7 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

紅太極 2024-09-07 01:50:30

为提交按钮命名。您可以像处理任何其他参数一样处理来自该按钮的请求参数。不过,某些浏览器可能会以不同的方式处理它们给出的值。

<input name="submittype" type="submit" value="${document.title}" />

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.

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