在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
总结
全局环境无论是否在严格模式下,this 均指向 window 对象。 console.log(this === window) // true // 严格模式 'use strict' console.log(this === window) // true 普通函数
构造函数函数作为构造函数使用时,this 指向构造出来的实例。 function Test() { this.number = 1 } let test1 = new Test() console.log(test1.number) // 1 箭头函数函数为箭头函数时,this 指向函数定义时上一层作用域中的 this 值。 let test = () => { return this === window } console.log(test()) // true let obj = { number: 1 } function foo() { return () => { return this.number } } let test = foo.call(obj) console.log(test()) // 1 对象的方法函数作为对象的方法使用时,this 指向该对象。 let obj = { number: 1, getNumber() { return this.number } } console.log(obj.getNumber()) // 1 call()、apply()、bind()
let obj = { number: 1 } function test(num) { return this.number + num } console.log(test.call(obj, 1)) // 2 console.log(test.apply(obj, [2])) // 3 let foo = test.bind(obj, 3) console.log(foo()) // 4 到此这篇关于JavaScript 中this指向问题案例详解的文章就介绍到这了,更多相关JavaScript 中this指向问题内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论