this

Posted 1403723150cxf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this相关的知识,希望对你有一定的参考价值。

var name = "xiaobai";
var object = {
    name : "xiaoxin";
    getNameFun:function(){
     return funtion(){
         return  this.name; 
 }
}  
}

console.log(object.getNmaeFun()());

输出结果是:xiaobai;

为什么不是:xiaoxin;

看下面

var -this=this;

  先说一下函数,函数是一种特殊的对象,这个特殊的对象,这个特殊对象就是window对象。

var c = 1;
var b = 10;
function f(){
  console.log(this);
}
f();

  输出为:window对象

这是上面就可以理解了

 

return function(){
  this.name;
}

  这是一个匿名函数不是object对象的属性和函数成员,匿名函数this指向window对象 this.name相当于window.name

再看下面代码

var name = "我是小可爱";
var object = {
  name :"我的小宝贝",
  getNameFunc:function(){
    var _this = this;
    return function(){
    return   _this.name;
}
}  

}
console.log(object.getNameFunc()());

  输出:我的小宝贝


以上是关于this的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0 代码功能片段

在 webview_flutter 中启用捏合和缩放,在哪里添加代码片段 [this.webView.getSettings().setBuiltInZoomControls(true);]

ngx-translate实现国际化:this.translate.use()this.translate.get()this.translate.instant()onLangChange(代码片段

Discuz代码片段

在片段java类中使用“this”和getLastSignedInAccount时出现错误[重复]

实用代码片段将json数据绑定到html元素 (转)