-
Notifications
You must be signed in to change notification settings - Fork 0
/
IFE test 2.html
56 lines (46 loc) · 1.16 KB
/
IFE test 2.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
52
53
54
55
56
<!--
1.参考以下示例代码,页面加载后,将提供的空气质量数据数组,按照某种逻辑(比如空气质量大于60)进行过滤筛选,
最后将符合条件的数据按照一定的格式要求显示在网页上
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IFE JavaScript Task 01</title>
</head>
<body>
<h3>污染城市列表</h3>
<ul id="aqi-list">
<!--
<li>第一名:福州(样例),10</li>
<li>第二名:福州(样例),10</li> -->
</ul>
<script type="text/javascript">
var aqiData = [
["北京", 90],
["上海", 50],
["福州", 10],
["广州", 50],
["成都", 90],
["西安", 100]
];
(function () {
/*
在注释下方编写代码
遍历读取aqiData中各个城市的数据
将空气质量指数大于60的城市显示到aqi-list的列表中
*/
var newArray=new Array;
for(var i in aqiData){
if(aqiData[i][1]>60)
newArray.push(aqiData[i][0]);
}
var output=" ";
for(var j=0;j<newArray.length;j++){
output+="<li>第"+(j+1)+"名"+" "+newArray[j]+"</li>";
document.getElementById("aqi-list").innerHTML=output;
}
})();
</script>
</body>
</html>