-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (24 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>测试地址解析</title>
<link rel="stylesheet" href="css/c08.css" />
</head>
<body>
<h2>输入</h2>
请粘贴整个收货信息: <input type="text" name="fname" id="tj_input" />
<input type="submit" value="解析" id="tj_button" />
<h2>结果</h2>
<p>省份:<input id="province" type="text" name="fname" id="tj_input" /></p>
<p>地市:<input id="city" type="text" name="fname" id="tj_input" /></p>
<p>区县:<input id="district" type="text" name="fname" id="tj_input" /></p>
<p>详址:<input id="detailInfo" type="text" name="fname" id="tj_input" /></p>
<p>姓名:<input id="name" type="text" name="fname" id="tj_input" /></p>
<p>手机:<input id="mobile" type="text" name="fname" id="tj_input" /></p>
<p>电话:<input id="telphone" type="text" name="fname" id="tj_input" /></p>
<p>邮编:<input id="zipcode" type="text" name="fname" id="tj_input" /></p>
<!-- Fetched without credentials -->
<script type="module" src="js/demo.js"></script>
</body>
</html>