-
Notifications
You must be signed in to change notification settings - Fork 0
/
mmm.html
67 lines (66 loc) · 1.42 KB
/
mmm.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
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
<script>
function f1 () {
console.log("真的为你开心");
window.setTimeout(f2,300)
}
function f2 () {
console.log("真的为你开心");
window.setTimeout(f3,300)
}
function f3 () {
console.log("真的为你开心");
window.setTimeout(f4,300)
}
function f4 () {
console.log("真的为你开心");
window.setTimeout(f5,300)
}
function f5 () {
console.log("真的为你开心");
window.setTimeout(f6,300)
}
function f6 () {
console.log("真的为你开心");
window.setTimeout(f7,300)
}
function f7 () {
console.log("真的为你开心");
window.setTimeout(f8,300)
}
function f8 () {
console.log("真的为你开心");
window.setTimeout(function(){
alert('')
},500)
}
{
"css": "text/css",
"gif": "image/gif",
"html": "text/html",
"ico": "image/x-icon",
"jpeg": "image/jpeg",
"jpg": "image/jpeg",
"js": "text/javascript",
"json": "application/json",
"pdf": "application/pdf",
"png": "image/png",
"svg": "image/svg+xml",
"swf": "application/x-shockwave-flash",
"tiff": "image/tiff",
"txt": "text/plain",
"wav": "audio/x-wav",
"wma": "audio/x-ms-wma",
"wmv": "video/x-ms-wmv",
"xml": "text/xml"
}
window.setTimeout(f1,1000)
</script>