form表单如何提交list集合到服务器实现数据交互<form action="${list}" method="get" name="ProductForm" id="theProductForm" class="#">
<%--
action:表单提交时向${list}发送表单数据
method:表单数据提交⽅式
name  :控制表单控件
id    :区别不同的表单控件
class : 指定表格css样式类
--%>
<table border="1" cellpadding="0" cellspacing="0" width="50%">
<tr>
jsp使用el表达式<th>商品编号</th>
<th>商品名称</th>
<th>商品价格</th>
<th>商品产地</th>
<th>操作</th>
</tr>
<tr>
<!-- jstl jsp⾥写java (T_T) forEach遍历list-->
<c:forEach var="product" items="${list}">
<td>${product.id}</td>
<td>${product.name}</td>
<td>${product.price}</td>
<td>${product.address}</td>
<td>
<a href="#">删除</a>
</td>
</tr>
</c:forEach>
</table>
</form>
⼜是⼀个⼩细节:
el表达式在jsp⾥单⾏注释⾥仍有效(果然哪都能写),但是在多⾏注释⾥失效
<!-- ${list} -->
<%--
当action表单提交时向${list}发送表单数据
--%>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。