-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 859 Bytes
/
index.html
File metadata and controls
38 lines (34 loc) · 859 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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>任务十六:零基础JavaScript编码(四)</title>
</head>
<body>
<div>
<label>城市名称:
<input id="aqi-city-input" type="text">
</label>
<br>
<label>空气质量指数:
<input id="aqi-value-input" type="text">
</label>
<br>
<button id="add-btn">确认添加</button>
</div>
<table id="aqi-table">
<tr>
<td>城市</td><td>空气质量</td><td>操作</td>
</tr>
<!--
<tr>
<td>北京</td><td>90</td><td><button>删除</button></td>
</tr>
<tr>
<td>北京</td><td>90</td><td><button>删除</button></td>
</tr>
-->
</table>
<script src="./app.js"></script>
</body>
</html>