JavaScript中this关键字用法实例分析

function a(){ var user = "yao"; console.log(this.user);//undefined console.log(this);//window } a();

等价于:

function a(){ var user = "yao"; console.log(this.user);//undefined console.log(this);//window } window.a();

this指向的是window。

例2:

var o = { user:"yao", fn:function () { console.log(this.user);//yao } } o.fn();

this指向的是o。

例3:

var o = { user:"yao", fn:function () { console.log(this.user);//yao } } window.o.fn();

this指向的是o。

var o = { a:10, b:{ a:12, fn:function () { console.log(this.a);//12 } } } o.b.fn();

this指向的是b。

例4:

var o = { a:10, b:{ a:12, fn:function () { console.log(this.a);//undefined console.log(this);//window } } }; var j = o.b.fn; j();

综上所述:

this的指向永远是最终调用它的对象。

当this遇上函数的return:

例5:

function fn(){ this.user = "yao"; return {}; } var a = new fn; console.log(a.user);//undefined

例6:

function fn(){ this.user = "yao"; return function(){}; } var a = new fn; console.log(a.user);//undefined

例7:

function fn(){ this.user = "yao"; return 1; } var a = new fn; console.log(a.user);//yao

例8:

function fn(){ this.user = "yao"; return undefined; } var a = new fn; console.log(a.user);//yao

this指向的是函数返回的那个对象。

function fn(){ this.user = "yao"; return null; } var a = new fn; console.log(a.user);//yao

虽然:null是对象,但是此时this指向的仍然是函数的实例。

PS:

在"use strict"模式下,this默认的指向是undefined,而不是window。

更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《javascript面向对象入门教程》、《JavaScript常用函数技巧汇总》、《JavaScript错误与调试技巧总结》、《JavaScript数据结构与算法技巧总结》、《JavaScript遍历算法与技巧总结》及《JavaScript数学运算用法总结

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/87eddd2db62a373113c72635aead7b2b.html