-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditAddress.html
51 lines (46 loc) · 1.42 KB
/
editAddress.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>编辑收货地址</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link rel="stylesheet" type="text/css" href="css/reset.css"/>
<link rel="stylesheet" type="text/css" href="css/editAddress.css"/>
<script src="js/PCASClass.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
window.onload = function(){
new PCAS("province6","city6","area6","山东省","青岛市","市北区");
}
</script>
</head>
<body>
<div class="color">
<!-- 头部 -->
<header>
<div>
<a href="userCenter.html"><img src="img/back.png"></a>
<img src="img/Line.png">
<span>编辑地址</span>
</div>
<img src="img/Path.png">
</header>
<!-- 第一部分 -->
<div class="content01">
<input class="username" type="text" id="username" value="王先生"/>
<input class="tel" type="text" id="tel" value="1834783473">
</div>
<!-- 第二部分 -->
<div class="content02">
<select name="province6"></select>
<select name="city6"></select>
<select name="area6"></select>
</div>
<!-- 第三部分 -->
<div class="content03">
<input class="detailAddress" type="text" value="宁夏路189号5单元">
</div>
</div>
<!-- 尾部 -->
<div class="footer">保存</div>
</body>
</html>