-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest5.html
More file actions
46 lines (46 loc) · 1.07 KB
/
test5.html
File metadata and controls
46 lines (46 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
ul li{
border: 1px solid silver;
line-height: 30px;
}
</style>
</head>
<body>
<!--<ul>-->
<!--<li class="li-list"></li>-->
<!--<li class="li-list"></li>-->
<!--<li class="li-list"></li>-->
<!--<li class="li-list"></li>-->
<!--<li class="li-list"></li>-->
<!--</ul>-->
<div id="table"></div>
<marquee behavior="" direction="up">向上跑</marquee>
<script>
var list = document.getElementsByClassName('li-list');
var data = [1,2,3,4,5,6,7,8,9,9];
for(let i=0;i<list.length;i++) {
// list[i].append("这是第" + i + "行数据");
list[i].append(`这是第${i}行数据`);
}
var table = document.getElementById("table");
var Data = `
<table>
<tr>
<td>${data[0]}</td>
<td>${data[1]}</td>
<td>${data[2]}</td>
</tr>
<tr>
</tr>
<tr>
</tr>
</table>`;
table.innerHTML = Data;
</script>
</body>
</html>