Skip to content
limy-blog
Search
K
Main Navigation
基础知识
编程思想
后端
计算机网络
Node.js
工程化
基础
读书笔记
手写题
我的掘金
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
JS 中 this 的五种情况
元素的事件绑定,事件触发,方法执行,方法中的
this
一般指当前元素
函数执行,看前面是否有点, 点前面是谁
this
就是谁, 没有点 this 就是 window
构造函数的 this 是当前类的实例
箭头函数没有自己的 this, 其 this 指向创建时的上下文
基于 call / apply / bind 暴力改变 this