我正在使用JQuery
对话框来显示一个<form:form>
以识别/选择要从查询中添加的特定记录。表中的每条记录都应包含一个按钮作为submit
所述表单的触发器以添加所选记录。下面的代码说明了代码的结构:
<form:form action="POST" action="form_action" modelAttribute="form">
<div><form:hidden path="selectedDate" />
<!-- Other components relating to the parent record -->
</div>
<div>
<!-- The detail of the parent -->
<table>
<thead>
<th>Name</th>
<th></th>
</thead>
<tbody>
<c:forEach items="${items}" var="itr">
<tr>
<td>${itr.name}</td>
<td>
<input type="submit" value="Select" name="${itr.id}" />
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</form:form>
有没有办法获得一个 post 参数id
来指示所选记录?