2020-4-21 前端達(dá)人
his是一個(gè)關(guān)鍵字,表示執(zhí)行當(dāng)前函數(shù)的對(duì)象
function fn(){
console.log(this); //window
console.log(typeof this); //object
}
fn();
- 嚴(yán)格模式下,this指向undefiend
"use strict";
function fn(){
console.log(this); //undefined
}
fn();
藍(lán)藍(lán)設(shè)計(jì)的小編 http://m.sillybuy.com