Skip to content
李雨墨
Main Navigation
首页
JS底层
Vue体系
React体系
工程化
项目复盘
性能优化
技术方案
面试题
Appearance
Menu
Return to top
On this page
this 指向
什么是this
this表示函数执行时的调用对象。
普通函数
js
function
test
(){
console.
log
(
this
)
}
箭头函数
箭头函数没有自己的this。
项目使用
Vue事件绑定场景。