You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookStore/web/pages/cart/checkout.jsp

52 lines
1.6 KiB

3 years ago
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
4 weeks ago
<!-- 指定页面使用的内容类型为HTML字符集为UTF-8并声明使用Java作为脚本语言 -->
3 years ago
<!DOCTYPE html>
4 weeks ago
<!-- 声明文档类型为HTML5 -->
3 years ago
<html>
4 weeks ago
<!-- HTML文档的根元素 -->
3 years ago
<head>
4 weeks ago
<!-- 头部元素,包含文档的元数据 -->
<meta charset="UTF-8">
<!-- 设置文档的字符编码为UTF-8 -->
<title>结算页面</title>
<!-- 设置网页的标题 -->
3 years ago
<%@include file="/pages/common/header.jsp"%>
4 weeks ago
<!-- 包含插入一个公共的头部JSP文件通常包含CSS和JavaScript链接 -->
<style type="text/css">
<!-- 定义内嵌的CSS样式 -->
3 years ago
h1 {
4 weeks ago
<!-- 设置h1标签的样式 -->
3 years ago
text-align: center;
4 weeks ago
<!-- 文本居中对齐 -->
3 years ago
margin-top: 200px;
4 weeks ago
<!-- 上边距为200像素 -->
3 years ago
}
4 weeks ago
</style>
3 years ago
</head>
<body>
4 weeks ago
<!-- 网页的主体部分 -->
3 years ago
4 weeks ago
<div id="header">
<!-- 头部区域的容器 -->
<img class="logo_img" alt="" src="static/img/logo.jpg" >
<!-- 显示网站的logo图片 -->
<span class="wel_word">结算</span>
<!-- 显示欢迎词或当前页面标识 -->
<%@include file="/pages/common/login_success_menu.jsp"%>
<!-- 包含登录成功后的菜单JSP文件 -->
</div>
<div id="main">
<!-- 主要内容的容器 -->
<h1>你的订单已结算,订单号为${sessionScope.orderId},店主很快就会发货啦!</h1>
<!-- 显示订单结算成功的消息,${sessionScope.orderId}用于从会话范围获取订单号 -->
</div>
<%@include file="/pages/common/footer.jsp"%>
<!-- 包含页脚的JSP文件通常包含版权信息和链接 -->
3 years ago
</body>
4 weeks ago
</html>
<!-- HTML文档的结束 -->