我在jQuery中调用了这个函数:
image.save(comment);
我已经定义了这样的保存功能:
Image.prototype.save = association => {
debugger;
this
}
如何让this
等于函数调用的接收者image
?现在在调试器中,它等于窗口对象。
答案 0 :(得分:1)
不要使用箭头功能
箭头函数有一个词汇
this
;它的价值取决于周围的范围。
Image.prototype.save = function(association){
debugger;
this
}