JavaScript中的this

JavaScript中的this是指包含它(this)的函数作为方法被调用时所属于的对象

例如 全局函数默认是window对象 ,如果有一个全局函数

function checkResult(){
     this  
}
checkResult();

此时this就指window对象,alert,console,location.href都是window的内置函数等效于 window.location.href window.alert,window.console

原文地址:https://www.cnblogs.com/zincredible/p/10238029.html