- Javascript 基础教程
- Javascript - 首页
- JavaScript - 路线图
- JavaScript - 概述
- JavaScript - 特性
- JavaScript - 启用
- JavaScript - 位置
- JavaScript - 语法
- JavaScript - Hello World
- JavaScript - Console.log()
- JavaScript - 注释
- JavaScript - 变量
- JavaScript - let 语句
- JavaScript - 常量
- JavaScript - 数据类型
- JavaScript - 类型转换
- JavaScript - 严格模式
- JavaScript - 保留关键字
- JavaScript 运算符
- JavaScript - 运算符
- JavaScript - 算术运算符
- JavaScript - 比较运算符
- JavaScript - 逻辑运算符
- JavaScript - 位运算符
- JavaScript - 赋值运算符
- JavaScript - 条件运算符
- JavaScript - typeof 运算符
- JavaScript - 空值合并运算符
- JavaScript - delete 运算符
- JavaScript - 逗号运算符
- JavaScript - 分组运算符
- JavaScript - yield 运算符
- JavaScript - 展开运算符
- JavaScript - 指数运算符
- JavaScript - 运算符优先级
- JavaScript 控制流
- JavaScript - if...else
- JavaScript - while 循环
- JavaScript - for 循环
- JavaScript - for...in
- Javascript - for...of
- JavaScript - 循环控制
- JavaScript - break 语句
- JavaScript - continue 语句
- JavaScript - switch case
- JavaScript - 用户自定义迭代器
- JavaScript 函数
- JavaScript - 函数
- JavaScript - 函数表达式
- JavaScript - 函数参数
- JavaScript - 默认参数
- JavaScript - Function() 构造函数
- JavaScript - 函数提升
- JavaScript - 自执行函数
- JavaScript - 箭头函数
- JavaScript - 函数调用
- JavaScript - Function call()
- JavaScript - Function apply()
- JavaScript - Function bind()
- JavaScript - 闭包
- JavaScript - 变量作用域
- JavaScript - 全局变量
- JavaScript - 智能函数参数
- JavaScript 对象
- JavaScript - Number
- JavaScript - Boolean
- JavaScript - String
- JavaScript - Array
- JavaScript - Date
- JavaScript - DataView
- JavaScript - Handler
- JavaScript - Math
- JavaScript - RegExp
- JavaScript - Symbol
- JavaScript - Set
- JavaScript - WeakSet
- JavaScript - Map
- JavaScript - WeakMap
- JavaScript - 可迭代对象
- JavaScript - Reflect
- JavaScript - TypedArray
- JavaScript - 模板字面量
- JavaScript - 标签模板
- 面向对象的 JavaScript
- JavaScript - 对象
- JavaScript - 类
- JavaScript - 对象属性
- JavaScript - 对象方法
- JavaScript - 静态方法
- JavaScript - 显示对象
- JavaScript - 对象访问器
- JavaScript - 对象构造函数
- JavaScript - 原生原型
- JavaScript - ES5 对象方法
- JavaScript - 封装
- JavaScript - 继承
- JavaScript - 抽象
- JavaScript - 多态
- JavaScript - 解构赋值
- JavaScript - 对象解构
- JavaScript - 数组解构
- JavaScript - 嵌套解构
- JavaScript - 可选链
- JavaScript - 全局对象
- JavaScript - Mixin
- JavaScript - Proxy
- JavaScript 版本
- JavaScript - 历史
- JavaScript - 版本
- JavaScript - ES5
- JavaScript - ES6
- ECMAScript 2016
- ECMAScript 2017
- ECMAScript 2018
- ECMAScript 2019
- ECMAScript 2020
- ECMAScript 2021
- ECMAScript 2022
- JavaScript 异步编程
- JavaScript - 异步编程
- JavaScript - 回调函数
- JavaScript - Promise
- JavaScript - Async/Await
- JavaScript - 微任务
- JavaScript - Promise 化
- JavaScript - Promise 链式调用
- JavaScript - 定时事件
- JavaScript - setTimeout()
- JavaScript - setInterval()
- JavaScript Cookie
- JavaScript - Cookie
- JavaScript - Cookie 属性
- JavaScript - 删除 Cookie
- JavaScript 浏览器 BOM
- JavaScript - 浏览器对象模型
- JavaScript - Window 对象
- JavaScript - Document 对象
- JavaScript - Screen 对象
- JavaScript - History 对象
- JavaScript - Navigator 对象
- JavaScript - Location 对象
- JavaScript - Console 对象
- JavaScript Web APIs
- JavaScript - Web API
- JavaScript - History API
- JavaScript - Storage API
- JavaScript - Forms API
- JavaScript - Worker API
- JavaScript - Fetch API
- JavaScript - Geolocation API
- JavaScript 事件
- JavaScript - 事件
- JavaScript - DOM 事件
- JavaScript - addEventListener()
- JavaScript - 鼠标事件
- JavaScript - 键盘事件
- JavaScript - 表单事件
- JavaScript - Window/Document 事件
- JavaScript - 事件委托
- JavaScript - 事件冒泡
- JavaScript - 事件捕获
- JavaScript - 自定义事件
- JavaScript 错误处理
- JavaScript - 错误处理
- JavaScript - try...catch
- JavaScript - 调试
- JavaScript - 自定义错误
- JavaScript - 扩展错误
- JavaScript 重要关键字
- JavaScript - this关键字
- JavaScript - void 关键字
- JavaScript - new 关键字
- JavaScript - var 关键字
- JavaScript HTML DOM
- JavaScript - HTML DOM
- JavaScript - DOM 方法和属性
- JavaScript - DOM Document
- JavaScript - DOM 元素
- JavaScript - DOM 属性 (Attr)
- JavaScript - DOM 表单
- JavaScript - 修改 HTML
- JavaScript - 修改 CSS
- JavaScript - DOM 动画
- JavaScript - DOM 导航
- JavaScript - DOM 集合
- JavaScript - DOM NodeList
- JavaScript - DOM DOMTokenList
- JavaScript 其他
- JavaScript - Ajax
- JavaScript - 异步迭代
- JavaScript - Atomics 对象
- JavaScript - rest 参数
- JavaScript - 页面重定向
- JavaScript - 对话框
- JavaScript - 页面打印
- JavaScript - 验证
- JavaScript - 动画
- JavaScript - 多媒体
- JavaScript - 图片地图
- JavaScript - 浏览器
- JavaScript - JSON
- JavaScript - 多行字符串
- JavaScript - 日期格式
- JavaScript - 获取日期的方法
- JavaScript - 设置日期的方法
- JavaScript - 模块
- JavaScript - 动态导入
- JavaScript - BigInt
- JavaScript - Blob
- JavaScript - Unicode
- JavaScript - 浅拷贝
- JavaScript - 调用栈
- JavaScript - 引用类型
- JavaScript - IndexedDB
- JavaScript - 点击劫持攻击
- JavaScript - 柯里化
- JavaScript - 图形
- JavaScript - Canvas
- JavaScript - 防抖
- JavaScript - 性能
- JavaScript - 风格指南
JavaScript - this关键字
什么是 'this' 关键字?
在 JavaScript 中,'this' 关键字包含对对象的引用。它表示函数或当前代码的上下文。它用于访问当前对象的属性和方法。
当在函数内部使用 this 关键字时,this 将引用调用该函数的对象。
在 JavaScript 中,函数也是对象。因此,您也可以将 'this' 关键字与函数一起使用。
'this' 指的是哪个对象?
'this' 关键字引用的对象取决于您如何使用 'this' 关键字。
例如:
'this' 关键字在全局作用域中引用 window 对象。
当您在函数内部使用 'this' 关键字时,它也表示 'window' 对象。
在函数的严格模式下,'this' 关键字引用 undefined。
当您在对象方法中使用它时,'this' 关键字引用该对象。
在事件处理程序中,'this' 关键字引用执行该事件的元素。
在 call()、apply() 和 bind() 等方法中的 'this' 关键字可以引用不同的对象。
语法
遵循以下语法在 JavaScript 中使用 'this' 关键字:
this.property OR this.method();
您可以使用 'this' 关键字访问属性并执行对象的方法。
JavaScript 中全局作用域的 'this'
当您在全局作用域中使用 'this' 关键字时,它表示全局 (window) 对象。您可以使用全局作用域中的 'this' 关键字访问全局变量。
示例
在下面的代码中,我们在全局作用域中定义了 'num' 变量和 printNum() 函数。之后,我们使用 'this' 关键字访问全局变量和函数。
<html> <body> <div id = "demo"> </div> <script> const output = document.getElementById('demo'); var num = 10; function printNum() { output.innerHTML += "Inside the function: " + num + "<br>"; } this.printNum(); output.innerHTML += "Outside the function: " + this.num + "<br>"; </script> </body> </html>
输出
Inside the function: 10 Outside the function: 10
JavaScript 函数中的 'this'
当您在函数中使用 'this' 关键字时,它表示全局作用域或 'window' 对象。
示例
在下面的代码中,我们在函数内部使用了 'this' 关键字。您可以观察到我们使用函数内部的 'this' 关键字访问全局变量。
<html> <body> <div id = "demo"> </div> <script> const output = document.getElementById('demo'); var message = "Hello World!"; function printMessage() { var message = "Hi! How are you?"; output.innerHTML = "The messsage is: " + this.message; } printMessage(); </script> </body> </html>
输出
The messsage is: Hello World!
严格模式下函数中的 'this'
当您在严格模式下的函数内部使用 'this' 关键字时,它不引用任何对象。'this' 关键字的值变为 undefined。
示例
在下面的代码中,我们在严格模式下的函数内部使用了 'this' 关键字。它打印 undefined。
<html> <body> <div id = "demo"> </div> <script> let output = document.getElementById('demo'); var message = "Hello World!"; function test() { "use strict"; output.innerHTML = "The value of this in the strict mode is: " + this; } test(); </script> </body> </html>
输出
The value of this in the strict mode is: undefined
构造函数中的 'this'
当您将函数用作构造函数来创建对象时,'this' 关键字引用该对象。
示例
我们在下面的代码中定义了 Animal() 构造函数。我们在构造函数内部使用了 'this' 关键字来初始化对象的属性。
<html> <body> <div id = "demo"> </div> <script> const output = document.getElementById('demo'); function Animal() { this.name = 'Lion'; this.age = 3; this.color = 'Brown'; } const newAnimal = new Animal(); output.innerHTML = "Animal Name: " + newAnimal.name + "<br>"; output.innerHTML += "Animal Age: " + newAnimal.age + "<br>"; output.innerHTML += "Animal Color: " + newAnimal.color; </script> </body> </html>
输出
Animal Name: Lion Animal Age: 3 Animal Color: Brown
箭头函数中的 'this'
当您在箭头函数中使用 'this' 关键字时,它引用其父对象的范围。
例如,当您在对象方法内部定义箭头函数并在其中使用 'this' 关键字时,它表示该对象。如果您在另一个函数内部定义箭头函数,则 'this' 关键字引用全局对象。
示例
在下面的代码中,我们在对象的 getDetails() 方法内部定义了箭头函数。当我们打印 'this' 关键字的值时,它打印该对象。
<html> <body> <div id = "output1">Value of 'this' inside the getDetails() method: </div> <div id = "output2">Value of 'this' inside the getInnerDetails() method: </div> <script> const wall = { size: "10", color: "blue", getDetails() { document.getElementById('output1').innerHTML += JSON.stringify(this); const getInnerDetails = () => { document.getElementById('output2').innerHTML += JSON.stringify(this); } getInnerDetails(); } } wall.getDetails(); </script> </body> </html>
输出
Value of 'this' inside the getDetails() method: {"size":"10","color":"blue"} Value of 'this' inside the getInnerDetails() method: {"size":"10","color":"blue"}
对象方法中的 'this'
当您在对象方法内部使用 'this' 关键字时,它表示对象本身。
示例
在下面的代码中,我们定义了 'fruit' 对象。该对象包含 printFruitDetails() 方法,在该方法中,我们使用了 'this' 关键字来访问对象的属性。
<html> <body> <div id = "demo"> </div> <script> const output = document.getElementById('demo'); const fruit = { name: "Apple", color: "red", printFruitDetails() { output.innerHTML += "Furit Name = " + this.name + "<br>"; output.innerHTML += "Fruit Color = " + this.color; } } fruit.printFruitDetails(); </script> </body> </html>
输出
Furit Name = Apple Fruit Color = red
对象方法的子函数中的 'this'
当您在对象方法内部定义函数并在该函数内部使用 'this' 关键字时,它表示全局对象而不是对象。
示例
在下方的代码中,我们定义了 person 对象。person 对象包含 printDetails() 方法。在 printDetails() 方法中,我们定义了 printThis() 函数。
在 printThis() 函数中,我们打印了“this”关键字的值,它打印的是全局对象。
<html> <body> <div id = "output">Inside the printThis() function, Value of 'this' = </div> <script> const person = { name: "Salman", isBusinessman: false, printDetails() { function printThis() { document.getElementById('output').innerHTML += this; } printThis(); } } person.printDetails(); </script> </body> </html>
输出
Inside the printThis() function, Value of 'this' = [object Window]
JavaScript 中事件处理程序中的“this”
在事件处理程序中使用“this”关键字指的是执行事件的 HTML 元素。
示例
在下方的代码中,我们在 <div> 元素中添加了 onClick 事件处理程序。当用户点击 div 元素时,我们使用“display”属性隐藏 div 元素。
<html> <head> <style> div { height: 200px; width: 700px; background-color: red; } </style> </head> <body> <p>Click the DIV below to remove it. </p> <div onclick = "this.style.display = 'none'"> </div> </body> </html>
JavaScript 中的显式函数绑定
在 JavaScript 中,call()、apply() 或 bind() 方法用于显式绑定。
显式绑定允许你借用特定对象的的方法。使用这些方法,你可以显式地定义“this”关键字的上下文。
让我们通过下面的例子来理解显式绑定。
示例:使用 call() 方法
在下方的代码中,lion 对象包含 color 和 age 属性。它还包含 printDetails() 方法,并使用“this”关键字打印详细信息。
tiger 对象只包含 color 和 age 属性。我们使用 call() 方法来调用 lion 对象的 printDetails() 方法,并使用 tiger 对象作为上下文。因此,该方法会输出 tiger 的详细信息。
<html> <body> <div id = "demo"> </div> <script> const output = document.getElementById('demo'); const lion = { color: "Yellow", age: 10, printDetails() { output.innerHTML += `<p>Color: ${this.color}</p>`; output.innerHTML += `<p>Age: ${this.age}</p>`; } } const tiger = { color: "Orange", age: 15, } lion.printDetails.call(tiger); </script> </body> </html>
输出
Color: Orange Age: 15
示例:使用 bind() 方法
下面的代码也包含 lion 和 tiger 对象。之后,我们使用 bind() 方法将 lion 对象的 printDetails() 方法绑定到 tiger 对象。
之后,我们使用 tigerDetails() 方法打印 tiger 对象的详细信息。
<html> <body> <div id = "demo"> </div> <script> const output = document.getElementById('demo'); const lion = { color: "Yellow", age: 10, printDetails() { output.innerHTML += `<p>Color: ${this.color}</p>`; output.innerHTML += `<p>Age: ${this.age}</p>`; } } const tiger = { color: "Orange", age: 15, } const tigerDetails = lion.printDetails.bind(tiger); tigerDetails(); </script> </body> </html>
输出
Color: Orange Age: 15
JavaScript “this” 的优先级
你应该使用以下优先级顺序来确定“this”关键字的上下文。
- 1. bind() 方法
- 2. call 和 apply() 方法
- 3. 对象方法
- 4. 全局作用域