-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
88 lines (79 loc) · 2.45 KB
/
cart.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>首页</title>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/mycss.css"/>
</head>
<body>
<!--header-->
<div class="header_box"></div>
<!--面包屑导航-->
<div class="breadcrumb">
<div class="container">
<h2>
<a href="">首页</a>><a href="">产品中心</a>
</h2>
</div>
</div>
<!--页面主体-->
<div class="main container">
<div class="cart">
<div class="cart_header">
<span>已选商品<em>0</em>件</span>
<span>总金额:<strong>0.00</strong></span>
<button type="button">结算</button>
</div>
<div class="cart_con">
<div class="cartcon_title">
<span><input type="checkbox"/> 全选</span>
<span>商品信息</span>
<span>单价</span>
<span>数量</span>
<span>金额</span>
<span>操作</span>
</div>
<div class="cartcon_list">
<h2>请登录后查看您的购物车 <a href="login.html">去登录</a></h2>
<!--<h2>购物车中没有任何商品!<a href="product.html">产品中心</a></h2>-->
<!--<ul>
<li>
<input type="checkbox" class="cart_checkbox"/>
<a href="" class="cart_img"><img src="product-imgs/jhq-m8088a.jpg" alt=""/></a>
<a href="" class="cart_title">家用除甲醛静音M-8088A</a>
<i>¥1599</i>
<div>
<span>-</span><input type="text" value="2"/><span>+</span>
</div>
<strong>¥1599.00</strong>
<em></em>
</li>
<li>
<input type="checkbox" class="cart_checkbox"/>
<a href="" class="cart_img"><img src="product-imgs/jhq-m8088a.jpg" alt=""/></a>
<a href="" class="cart_title">家用除甲醛静音M-8088A</a>
<i>¥1599</i>
<div>
<span>-</span><input type="text" value="2"/><span>+</span>
</div>
<strong>¥1599.00</strong>
<em></em>
</li>
</ul>-->
</div>
</div>
<div class="cart_header">
<span>已选商品<em>0</em>件</span>
<span>总金额:<strong>0.00</strong></span>
<button type="button">结算</button>
</div>
</div>
</div>
<!--footer-->
<footer class="footer"></footer>
<script src="js/jquery-1.11.3.js"></script>
<script src="js/main.js"></script>
<script src="js/cart.js"></script>
</body>
</html>