松软科技Web课堂:JavaScript this 关键词

实例

var person = {
  firstName: "Bill",
  lastName : "Gates",
  id       : 678,
  fullName : function() {
    return this.firstName + " " + this.lastName;
  }
};

 

this 是什么?

JavaScript this 关键词指的是它所属的对象。浏览器

它拥有不一样的值,具体取决于它的使用位置:app

  • 在方法中,this 指的是全部者对象。
  • 单独的状况下,this 指的是全局对象。
  • 在函数中,this 指的是全局对象。
  • 在函数中,严格模式下,this 是 undefined。
  • 在事件中,this 指的是接收事件的元素。

像 call() 和 apply() 这样的方法能够将 this 引用到任何对象。函数

方法中的 this

在对象方法中,this 指的是此方法的“拥有者”。this

在本页最上面的例子中,this 指的是 person 对象。spa

person 对象是 fullName 方法的拥有者。code

fullName : function() {
  return this.firstName + " " + this.lastName;
}

 

单独的 this

在单独使用时,拥有者是全局对象,所以 this 指的是全局对象。对象

在浏览器窗口中,全局对象是 [object Window]:blog

实例

var x = this;

 

在严格模式中,若是单独使用,那么 this 指的是全局对象 [object Window]:教程

实例

"use strict";
var x = this;

 

函数中的 this(默认)

在 JavaScript 函数中,函数的拥有者默认绑定 this。事件

所以,在函数中,this 指的是全局对象 [object Window]。

实例

function myFunction() {
  return this;
}

 

函数中的 this(严格模式)

JavaScript 严格模式不容许默认绑定。

所以,在函数中使用时,在严格模式下,this 是未定义的(undefined)。

实例

"use strict";
function myFunction() {
  return this;
}

 

事件处理程序中的 this

在 HTML 事件处理程序中,this 指的是接收此事件的 HTML 元素:

实例

<button onclick="this.style.display='none'">
  点击来删除我!
</button>

 

对象方法绑定

在此例中,this 是 person 对象(person 对象是该函数的“拥有者”):

实例

var person = {
  firstName  : "Bill",
  lastName   : "Gates",
  id         : 678,
  myFunction : function() {
    return this;
  }
};

 

实例

var person = {
  firstName: "Bill",
  lastName : "Gates",
  id       : 678,
  fullName : function() {
    return this.firstName + " " + this.lastName;
  }
};

 

换句话说,this.firstName 意味着 this(person)对象的 firstName 属性。

显式函数绑定

call() 和 apply() 方法是预约义的 JavaScript 方法。

它们均可以用于将另外一个对象做为参数调用对象方法。

您能够在本教程后面阅读有关 call() 和 apply() 的更多内容。

在下面的例子中,当使用 person2 做为参数调用 person1.fullName 时,this 将引用 person2,即便它是 person1 的方法:

实例

var person1 = {
  fullName: function() {
    return this.firstName + " " + this.lastName;
  }
}
var person2 = {
  firstName:"Bill",
  lastName: "Gates",
}
person1.fullName.call(person2);  // 会返回 "Bill Gates"
相关文章
相关标签/搜索