this
JavaScript的this总是指向一个对象,而具体指向哪个对象是在运行时基于函数的执行环境动态绑定的,而非函数被声明时的环境。
1 this的指向
除去不常用的with和eval的情况,具体到实际应用中,this的指向大概分为以下4种:
●作为对象的方法调用。
●作为普通函数调用。
●构造器调用。
●Function.prototype.call或Function.prototype.apply调用。
1.1 作为对象的方法调用
当函数作为对象的方法被调用时,this指向该对象:
var obj = {
a : 1,
getA : function(){
console.log(this ==== obj);//true
consoel.log(this.a);//1
}
};
obj.getA();
1.2 作为普通函数调用
当函数不作为对象的属性被调用时,也就是我们常说的普通函数方式,此时的this总是指向全局对象。在浏览器的JavaScript里,这个全局对象就是window。
window.name = 'globalName';
var getName = function(){return this.name;}
console.log(getName());//globalName
或者
window.name = 'globalName';
var myObject = {
name : 'sven',
getName : function(){
return this.name;
}
};
var getName = myObject.getName;
console.log(getName());//globalName
有时候我们会遇到一些困扰,比如在div节点的事件函数内部,有一个局部的callback方法,callback被作为普通函数调用时,callback内部的this指向了window,但我们往往是想让他指向div节点
<html>
<body>
<div id = "div1"></div>
</body>
<script>
window.id = "window";
document.getElementById("div1").onclick = function(){
console.log(this.id);//div1
var callback = function(){
console.log(this.id);//window
}
callback();
}
</script>
</html>
对于这个问题,有一种简单的解决办法
<html>
<body>
<div id = "div1"></div>
</body>
<script>
window.id = "window";
document.getElementById("div1").onclick = function(){
var that = this;
var callback = function(){
console.log(that.id);//div1
}
callback();
}
</script>
</html>
1.3 构造器调用
除了宿主提供的一些内置函数,大部分JavaScript函数都可以当做构造器使用。构造器的外表跟普通函数一模一样,他们的区别在于被调用的方式。当用new运算符调用函数时,该函数总会返回一个对象,通常情况下,构造器里的this就指向返回的这个对象
var MyClass = function(){
this.name = 'sven';
}
var obj = new MyClass();
console,log(obj.name);//sven
但用new调用构造函数时,还要注意一个问题,如果构造器显式地返回一个object类型的对象,那么此次运算结果最终会返回这个对象,而不是我们之前期待的this:
var MyClass = function(){
this.name = 'sven';
return {
name : "anne"
}
}
var obj = new MyClass();
console,log(obj.name);//anne
如果构造器不显式地返回任何数据,或者是返回一个非对象类型的数据,就不会造成上述问题:
var MyClass = function(){
this.name = 'sven';
return "anne";
}
var obj = new MyClass();
console,log(obj.name);//sven
1.4 Function.prototype.call或Function.prototype.apply调用
跟普通的函数调用相比,用Function.prototype.call或Function.prototype.apply可以动态的改变传入函数的this:
var obj1 = {
name : 'sven',
getName : function(){
return this.name;
}
}
var obj2 = {
name : "anne"
}
console.log(obj1.getName());//sven
console.log(obj1.getName.call(obj2));//anne
分享到:
相关推荐
This is the official JavaScript SDK for Analysys. JavaScript SDK目录说明: demo——API调用演示 SDK——SDK文件 src——SDK源码 vue-demo——VUE框架API调用演示 安装 npm install ans-javascript-sdk --save ...
Modern JavaScript Video Project.This is the Modern JavaScript Repository. Suitable for learning how to use JavaScript.
An exercise to practice JavaScript and use testing to create a solution. In this exercise, you will be able to: use data structures to organize your application information, learn how to model real...
此插件可让您使用对输入的javascript文件进行。 入门 开始使用您最喜欢的软件包管理器。 用纱安装 纱线添加-D包裹插件模糊处理 使用npm安装 npm install -D parcel-plugin-混淆 在生产模式下运行宗地以混淆代码 ...
计算机后端-Java-PHP视频教程javascript03-215 this是谁.wmv
JavaScript Koans is an interactive learning environment that uses failing tests to introduce students to aspects of JavaScript in a logical sequence. The inspiration for this project comes from the ...
JavaScript是Web开发中不可或缺的一部分,它是一种轻量级的、解释型的编程语言,主要用于增强网页的交互性。这份“JavaScript手册—中文文档”提供了一个全面的JavaScript学习资源,涵盖了从基础语法到高级特性的...
- **this**:在不同上下文中`this`的指向问题。 - **严格模式**:通过`"use strict";`启用严格模式,以获得更好的错误检测和性能提升。 - **立即执行函数表达式 (IIFE)**:一种创建作用域并立即执行函数的方式。 ...
how to exploit CSS transforms to create rich depth in animations, and how to fully leverage JavaScript animation libraries like Velocity.js to streamline animation programming. From animation ...
- **函数**:掌握函数表达式、函数声明、箭头函数以及它们的异同,包括作用域和this的绑定。 - **对象和原型链**:理解如何通过原型链实现继承,以及`__proto__`、`prototype`、`Object.getPrototypeOf()`之间的...
This repository is my small world for learning and practicing JavaScript. Some helpful resources or links will be posted here for use. Learning Path HTML--CSS--JavaScript--jQuery/JSON/DOM/Bootstrap ...
# in directory where you want the project to live, download this via git: git clone https://github.com/TiraO/students-first-javascript-project.git # go to your project directory cd students-first-...
现在就开始在gitpod中练习:或本地安装(如果您不想使用gitpod) 确保您已经安装了并且node.js版本为8+ This is the command to install the breathecode-cli$ npm i breathecode-cli -g在当前目录运行中下载react...
### JavaScript教程——从入门到精通:对象基础 #### 前言 JavaScript 是一种基于对象的语言,尽管它不具备像抽象、继承和重载这样的面向对象编程(OOP)特性,但仍然能够通过创建自定义对象来扩展其功能。本文将...
this.servantSdkService.getData().then((responseData) => { // 处理成功后的逻辑 }).catch((error) => { // 处理错误的逻辑 }); } } ``` 在这个例子中,`getData()`方法返回一个Promise,当服务器响应成功...
This Fifth Edition is completely revised and expanded to cover JavaScript as it is used in today's Web 2.0 applications. This book is both an example-driven programmer's guide and a keep-on-your-desk ...
2. **函数**:函数声明、函数表达式、箭头函数、作用域、闭包、this指向等。 3. **对象与数组**:对象创建与操作、数组方法(map、reduce、filter、forEach等)、解构赋值。 4. **字符串和正则表达式**:字符串操作...
- this关键字:根据调用上下文的不同,this的值也会改变。 - ES6新特性:箭头函数、模板字符串、let和const、解构赋值、类和模块等。 3. **前端开发相关**: - DOM操作:通过JavaScript操作HTML元素,例如增删改...
This book assumes basic knowledge of web development. No experience with SPAs is required. What’s Inside Design, build, and test a full-stack SPA Best-in-class tools like jQuery, TaffyDB, Node.js, ...