JavaScript this指向总结 在JavaScript中this永远指向当前函数的主人,即函数的调用对象或事件的调用对象,大致分为以下几种情况。 单独的this或者全局函数中的this指向window对象 console.log(this);//this => window对象 function fn1() { console.log(this);//this => window对象 } 注:在es5严格模式下,this禁止指向window,会报错 对象的方法中,this指向调用当前方法的对象 var person = { username: 钢铁侠,