-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.28 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
div{
width: 200px;
height: 200px;
margin: 300px auto;
/* border: 1px solid skyblue; */
text-align: center
}
button{
margin-top: 50px;
width: 100px;
height: 50px;
}
</style>
</head>
<body>
<div>
<h1>这里生成</h1>
<button>点击生成</button>
</div>
<script>
const data = [
"潮味饭堂",
"百年饺子",
"百年饺子",
"热干面",
"黄焖鸡",
"黄焖鸡",
"木桶饭",
"木桶饭",
"兰州拉面",
"兰州拉面",
"潮味饭堂",
"潮味饭堂",
];
const h1 = document.querySelector("h1");
const button = document.querySelector("button");
button.addEventListener("click", () => {
let num = Math.floor(Math.random() * data.length);
let str = data[num];
h1.innerHTML = str;
});
</script>
</body>
</html>