标签:对象 cti function console on() use efi 检查 this
function foo(){
"use strict";
console.error(this.a);
}
var a = 2;
foo(); //type error this is undefined.
//代码2
function foo(){
console.error(this.a);
}
var a =2;
+function(){
"use strict";
foo();
}() //2
//代码1 this 是unfiend 代码2 this是全局对象
原因:use strict是FunctionBody检查。所以进入foo()内发现是“use strict”就没;
而后者foo()本身就是non strict;
标签:对象 cti function console on() use efi 检查 this
原文地址:http://www.cnblogs.com/hello0101/p/6380271.html