学习JS不同写法

2019-03-12  本文已影响0人  大短人
this.xxx("mousedown",function(event){
  console.log("here");
}).bind(this)

this.xxx("mousedown",(event) => {
  console.log("herehere")
})

这两种是一个意思都是让匿名函数里的this指向外部的this

上一篇 下一篇

猜你喜欢

热点阅读