js 箭头函数 this
程序员文章站
2022-06-30 19:12:54
...
箭头函数没有this,所以箭头函数中的this指向上一层作用于的this
var obj = {
name:'name1',
age:18,
getName:()=>{
console.log('getName:',this)
},
getAge:function(){
console.log('getAge:',this)
}
}
console.log('全局window',this)
obj.getName()
obj.getAge()
上一篇: @[TOC](复杂网络级联失效的代码)
下一篇: js入门总结