我想知道是否可以从动态构建的表中获取所有行值。 我希望像request.getParameter(...)
中的其他参数一样将其恢复有可能吗?
提前致谢
我的表:
<table id="table_produits" >
<tbody>
<tr>
<td style="width: 80px;"><label for="u_codep">Produit </label></td>
<td><select class="span8" name="id_produit">
<%
List<Produit> l;
ProduitDao pdao = new ProduitDao();
l = pdao.GetAll();
int j = 0;
while (j < l.size()) {
%>
<option value="<%=l.get(j).getId()%>">
<%=l.get(j).getLibelle()%></option>
<%
j++;
}
%>
</select>
<td></td>
<td style="width: 35px;"><label for="u_quantite">
Quantité </label></td>
<td valign="top"><input type="text" id="u_quantite"
value="${nouvelleVente.quantité}" name="quantite"
class="span8" size="50" style="width: 50%;" /></td>
<td><i class="glyphicon glyphicon-plus"
onclick="javascript:newLine();"></i>
<td />
= </tr>
</tbody>
</table>
答案 0 :(得分:0)
只需了解如何执行此操作:使用getParameterValues()
例如 - &gt; String [] produits = request.getParameterValues(“id_produit”);
感谢developerwjk尝试提供帮助