您好,登錄后才能下訂單哦!
這篇文章主要講解了“JavaScript中this指向問題實例講解”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“JavaScript中this指向問題實例講解”吧!
全局環境 ?? window
普通函數 ?? window 或 undefined
構造函數 ?? 構造出來的實例
箭頭函數 ?? 定義時外層作用域中的 this
對象的方法 ?? 該對象
call()、apply()、bind() ?? 第一個參數
無論是否在嚴格模式下,this 均指向 window 對象。
console.log(this === window) // true
// 嚴格模式 'use strict' console.log(this === window) // true
正常模式
this 指向 window 對象
function test() { return this === window } console.log(test()) // true
嚴格模式
this 值為 undefined
// 嚴格模式 'use strict' function test() { return this === undefined } console.log(test()) // 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() 方法時,該函數的 this 均指向傳入的第一個參數。
調用函數的 bind() 方法時,返回的新函數的 this 指向傳入的第一個參數。
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指向問題實例講解這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。