📄 shoping.jsp~6~
字号:
<%@ page contentType="text/html; charset=GB2312" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%request.setCharacterEncoding("gbk"); %>
<html>
<head>
<title>
shoping
</title>
</head>
<body bgcolor="#ffffff">
<h2 align="center">
购物车
</h2>
<form method="post" action="shoping.jsp">
<table align="center">
<tr>
<th>商品名称</th>
<th>商品价格</th>
<th>商品简介</th>
<th>商品数量</th>
<th>移出购物车</th>
</tr>
<c:forEach items="${buygoods}" var="goods">
<tr>
<td>${goods.gname}</td>
<td>${goods.cprice}</td>
<td>${goods.cintro}</td>
<td>${goods.num}</td>
<td>${goods.GID}移出购物车</td>
</tr>
</c:forEach>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -