-
Notifications
You must be signed in to change notification settings - Fork 4
/
24.考查立即执行函数2.html
39 lines (37 loc) · 1.11 KB
/
24.考查立即执行函数2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>考查立即执行函数</title>
</head>
<body>
<script>
console.log("第一题");
// 题目一:以下代码的运行结果
var myObject = {
foo:"bar",
func:function () {
var self = this;
console.log("outer func | this.foo" +this.foo);
console.log("outer func | self.foo" +self.foo);
(function() {
console.log("inner func | this.foo" + this.foo);
console.log("inner func | self.foo" + self.foo);
})();
}
};
myObject.func();
// 这题考查
// 1.对象的方法里的this指向这个对象
// 2.立即执行函数是一个新的作用域,里面的this就在该作用域里
// 题目二:请写出下面的console.log输出的值
(function () {
var x=y=z=1;
}());
// console.log(x);
console.log(y);
console.log(z);
//题目二解析:脑子又不清醒了?都做过多少次了?声明的x是在方法体里,y,z都没有var,所以是全局的
</script>
</body>
</html>