JavaScript this 关键字,ES箭头函数中的this关键字
位置 | 非严格模式 | 严格模式 | 备注 |
单独使用 | Global | Global | Global在浏览器中就是window |
在函数中 | Global | undefined | |
在事件中 | 接收事件的元素 | 接收事件的元素 | |
在对象方法中 | 该方法所属的对象 | 该方法所属的对象 | |
箭头函数 | 定义函数时的对象,而不是使用函数时的对象 | 定义函数时的对象,而不是使用函数时的对象 |
参考文章
JavaScript this 关键字 : https://www.runoob.com/js/js-this.html
ES6 函数 : http://www.runoob.com/w3cnote/es6-function.html
javaScript之Global和window的区别理解 :https://blog.csdn.net/lishuoboy/article/details/88707703