this对象是指运行时期基于环境所绑定的总是指向调用者
var a=1;
function test() {
this.a=2;
}
test(); // window调用了函数,所以this指向window
alert(test.a); // undefined
alert(a); // 2
this对象是指运行时期基于环境所绑定的总是指向调用者
var a=1;
function test() {
this.a=2;
}
test(); // window调用了函数,所以this指向window
alert(test.a); // undefined
alert(a); // 2