this在全局中调用时指向的是全局对象。
this在函数中调用时指向调用函数的对象,调用函数的在不一样状况下有javascript
1.直接调用,此时函数内部的this指向全局对象 2.做为对象的方法,此时this指向该对象 3.构造函数,此时this指向构造的实例对象 4.call/apply改变this指向
this是Javascript语言的一个关键字。
它表明函数运行时,自动生成的一个内部对象,只能在函数内部使用。好比,html
function test(){ this.x = 1; }
随着函数使用场合的不一样,this的值会发生变化。可是有一个总的原则,那就是this指的是,调用函数的那个对象。
下面分四种状况,详细讨论this的用法。java
这是函数的最一般用法,属于全局性调用,所以this就表明全局对象global/window(在浏览器中全局对象即顶层对象指的是window,在nodejs中全局对象指的是global)。
请看下面这段代码,它的运行结果是1。node
function test(){ this.x = 1; alert(this.x); alert(this === window); test(); // 1 //true
为了证实this就是全局对象,我对代码作一些改变:浏览器
var x = 1; function test(){ alert(this.x); } test(); // 1
运行结果仍是1。再变一下:app
var x = 1; function test(){ this.x = 0; } test(); alert(x); //0
当调用函数test()后,执行this.x 语句,而这里的this.x指向的是全局的x,因此全局的x=1在这个时候变成x=0,因此在最后alert(x)的时候数据0。
从这里能够看出函数里的 this.x 指的是全局变量x里吧。函数
那若是是带有参数的函数呢?再来看看下面的例子:this
var a = 20; function fun(a){ this.a = 1; console.log(a); console.log(this.a); }; fun(10); //10 //1
当函数带有参数时,this依旧指向全局的变量,与参数没有任何关系,上面的写法就相似于下面的这种写法。code
var a = 20; function fun(b){ this.a = 1; console.log(b); console.log(this.a); }; fun(10); //10 //1
若是把this.a改为this.b呢?那this.b指向的是全局的变量仍是函数里面的变量呢?htm
var a = 20; function fun(b){ this.b = 1; //没有用var 至关于定义了一个全局变量b,并赋值为1 console.log(b); //10 打印出传入的参数b console.log(this.b); //1 打印出全局变量b }; fun(10); console.log(b); //1 打印出全局变量b
JavaScript里规定,全局函数里没有用var定义的的变量是全局变量,因此这里的this.b就至关于定义了一个全局的变量b,因此在最后能打印出变量b
如今你能看懂下面两个函数了吧
var a = 20; function fun(a){ this.a = 1; console.log(a) }; console.log(a);//20 没有执行this.a=1 语句时,全局变量a依旧为20 fun(10);//10 var a = 20; function fun(a){ this.a = 1; console.log(a) }; fun(10);//10 console.log(a);//1 执行this.a=1 语句后,全局变量a变为1
函数还能够做为某个对象的方法调用,这时this就指这个上级对象。
function test(){ alert(this.x); } var o = {}; o.x = 1; o.m = test; o.m(); // 1
或者用对象字面量来建立方法是好理解些,但都是一个意思
var pet = { words : 'my dear', speak : function(){ console.log(this.words); //my dear console.log(this === pet); //true } } pet.speak();
所谓构造函数,就是经过这个函数生成一个新对象(object)。这时,this就指这个新对象。
function test(){ this.x = 1; } var o = new test(); alert(o.x); // 1
运行结果为1。为了代表这时this不是全局对象,我对代码作一些改变:
var x = 2; function test(){ this.x = 1; } var o = new test(); alert(x); //2
运行结果为2,代表全局变量x的值根本没变。
再来看一个在实际应用中的例子
function Pet(words){ this.words = words; this.speak = function(){ console.log(this.words); console.log(this) } } var cat = new Pet('Miao'); cat.speak(); //当nwe了一个实例对象cat后,cat拥有了本身的word属性和speak方法,而cat.speak()调用时this指的的是cat对象本身 // Miao //Pet { words: 'Miao', speak: [Function] }
apply()是函数对象的一个方法,它的做用是改变函数的调用对象,它的第一个参数就表示改变后的调用这个函数的对象。所以,this指的就是这第一个参数。
var x = 0;
function test(){
alert(this.x);
}
var o={};
o.x = 1;
o.m = test;
o.m.apply(); //0
apply()的参数为空时,默认调用全局对象。所以,这时的运行结果为0,证实this指的是全局对象。
若是把最后一行代码修改成
o.m.apply(o); //1
运行结果就变成了1,证实了这时this表明的是对象o。
apply有两种实际的应用场景:
1.在对象中--调用时才改变this指向,如上例子,也许下面的例子好理解些
var pet = { words : 'my dear', speak : function(say){ console.log(say + ' ' +this.words) } } pet.speak('hello');//hello my dear //利用apple调用时改变this的指向 var dog = { words :'wang' } pet.speak.call(dog,'hello');//hello wang pet.speak('hello')//hello my dear
2.实现继承时的构造函数--定义时改变this指向
function Pets(words,sex){ this.words = words; this.sex = sex; this.speak = function(){ console.log(this.words + ' ' + this.sex) } } function Dog(words,sex){ //Pets.call(this, words, sex); //Pets.apply(this,[words, sex]) Pets.apply(this,arguments) } var dog = new Dog('wang','girl') dog.speak();//wang,girl
参考资料:
1.《JavaScript的this用法》--阮一峰