-
Notifications
You must be signed in to change notification settings - Fork 0
/
test222.html
84 lines (72 loc) · 1.94 KB
/
test222.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
/*CSS部分*/
<style>
.box1 {
width: 400px;
height: 300px;
background: pink;
/* border-top: 10px solid rebeccapurple; */
/* overflow:hidden; */
padding-top: 100px;
/* box-sizing: border-box; */
position: relative;
}
.box2 {
width: 100px;
height: 100px;
background: lightblue;
position: absolute;
left: 0;
top: 0;
}
.box3{
height: 100%;
width: 200px;
background: seagreen;
}
</style>
<body>
<div class="box1">
<div class="box2">
</div>
<div class="box3">
</div>
</div>
<script>
// function add(a){
// function sum(b){
// a += b
// return sum
// }
// sum.toString = function(){
// return a
// }
// return sum
// }
function add(...params1){
let total = 0
for(let i=0;i<params1.length;i++){
total += params1[i]
}
function sum(...params2){
for(let i=0;i<params2.length;i++){
total += params2[i]
}
return sum
}
sum.toString = function(){
return total
}
return sum
}
console.log(add(1)); // 1
console.log(add(1)(2)); // 3
console.log(add(1)(2)(3));// 6
console.log(add(1)(2, 3)); // 6
console.log(add(1, 2)(3)); // 6
console.log(add(1, 2, 3)); // 6
</script>
</body>
</html>