-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
29 lines (28 loc) · 797 Bytes
/
1.html
File metadata and controls
29 lines (28 loc) · 797 Bytes
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
<!DOCTYPE html>
<html lang="zh" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="area.js"></script>
</head>
<body>
省:<select id="province">
<!--onchange="selectcity()"-->
<option value="0">--请选择--</option>
</select>
<br />
市:<select id="city">
<option value="0">--请选择--</option>
</select>
县:<select id="county">
<option value="0">--请选择--</option>
</select>
镇:<select id="town">
<option value="0">--请选择--</option>
</select>
村:<select id="village">
<option value="0">--请选择--</option>
</select>
</body>
</html>