如何使用复选框将所选行中的数据从JSP传递到服务器
我想知道是否有任何方法使用我在这些行上放置的复选框向选定行发送数据到服务器? 我的意思是,如何才能将这些选定行的数据发送到服务器?
以下是我使用的html代码:
<table>
<thead>
<tr class="tableheader">
<td width="10%"></td>
<td width="30%">Vehicle</td>
<td width="40%">Driver</td>
<td width="10%">Mileage</td>
</tr>
</thead>
<tbody>
<c:forEach items="${list}" var="item">
<tr>
<td align="center">
<input type="checkbox" name="selectedItems"
value="c:out value="${item.numberPlate}"/>"/>
</td>
<td align="left"><c:out value="${item.numberPlate}"/></td>
<td align="left"><c:out value="${item.driver.fullName}" /></td>
<td align="left"><input type="text" name="mileage" value="" /></td>
</tr>
</c:forEach>
</tbody>
</table>
我真的希望你能就此提供一些指导。
预先感谢。
处理请求时使用request.getParameterValues("selectedItems")
。 而且我认为不需要向名称添加[]
上一篇: How to pass data from selected rows using checkboxes from JSP to the server