-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy paththen2.html
58 lines (52 loc) · 1.81 KB
/
then2.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="newPromise.js"></script>
<script>
window.onload = function () {
var oldConsole = window.console
window.console = {
log: function (str) {
if (oldConsole) {
oldConsole.log(str)
}
var div = document.createElement("div")
div.innerHTML = str;
document.body.appendChild(div);
}
}
new Promise(function (resolve) {
setTimeout(function () {
resolve(1000)
}, 1000)
}).then(function (a) {
console.log(a + "resolve 1")
return a + 10
}, function (e) {
console.log(e + "reject 1")
return e
}).then(function (a) {
console.log(a + "resolve 2")
return a + 2
}).then(function (a) {
console.log(a + "resolve 3")
return a + 5
}).then(function (a) {
return new Promise(function (resolve) {
setTimeout(function () {
console.log("setTimeout")
resolve(a + 100)
}, 2000);
})
}).then(function (a) {
console.log(a + "delay2000")
})
}
</script>
</head>
<body>
<div>TEST by 司徒正美</div>
</body>
</html>