码迷,mamicode.com
首页 > 其他好文 > 详细

2020诺禾-诺禾

时间:2020-05-21 10:20:47      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:name   for   tle   ids   stat   pre   ems   价格   idt   

参数绑定之列表的jsp页面

 
<form action="${pageContext.request.contextPath }/update.action" method="post">
商品列表:
<table width="100%" border=1>
<tr>
<td><input type="checkbox" value="" name="ids"/></td>
<td>商品名称</td>
<td>商品价格</td>
<td>生产日期</td>
<td>商品描述</td>
<td>操作</td>
</tr>
<c:forEach items="${itemList }" var="item" varStatus="s">
<tr>
<td><input type="checkbox" value="${item.id }" name="ids"/></td>
<td><input type="text" value="${item.name }" name="itemsList[${s.index }].name"/></td>
<td><input type="text" value="${item.price }" name="itemsList[${s.index }].price"/></td>
<td><fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
<td>${item.detail }</td>

<td><a href="${pageContext.request.contextPath }/itemEdit.action?id=${item.id}">修改</a></td>

</tr>
</c:forEach>

</table>
<input type="submit" value="提交"/>
</form>

2020诺禾-诺禾

标签:name   for   tle   ids   stat   pre   ems   价格   idt   

原文地址:https://www.cnblogs.com/lovenuohe/p/12928314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!