美文网首页
学习JS不同写法

学习JS不同写法

作者: 大短人 | 来源:发表于2019-03-12 17:32 被阅读0次
this.xxx("mousedown",function(event){
  console.log("here");
}).bind(this)

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

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

相关文章

网友评论

      本文标题:学习JS不同写法

      本文链接:https://www.haomeiwen.com/subject/nmwnpqtx.html