-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 1.74 KB
/
index.html
File metadata and controls
57 lines (54 loc) · 1.74 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>任务三十一:表单(三)联动</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="form">
<div class="is-student">
<label>
<input type="radio" name="student" value="Y" checked>
<span class="radio"></span>
在校生
</label>
<label>
<input type="radio" name="student" value="N">
<span class="radio"></span>
非在校生
</label>
</div>
<div class="location">
<label>
学 校
<span class="location-city">
<input type="text" name="location-city" placeholder="请选择省份">
</span>
<span class="location-school">
<input type="text" name="location-school" placeholder="请选择学校">
</span>
</label>
<!-- start 候选-->
<ul class="city-list" style="display: none">
</ul>
<ul class="school-list" style="display: none">
<li>哈尔滨工业大学</li>
<li>哈尔滨工业大学</li>
<li>哈尔滨工业大学</li>
<li>哈尔滨工业大学</li>
</ul>
<!-- end 候选-->
</div>
<div class="company" style="display: none">
<label>
就业单位
<span class="company-input">
<input type="text">
</span>
</label>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>