为了账号安全,请及时绑定邮箱和手机立即绑定

为什么this.aa变量在$.get的回调函数中无法使用

为什么this.aa变量在$.get的回调函数中无法使用

浮云间 2019-04-16 20:25:44
vara=function(){this.aa="123";}a.prototype={go:function(){$.get(xxx,function(){bb=this.aa;//失效})}}这种情况怎么调用呢
查看完整描述

2 回答

?
潇湘沐

TA贡献1816条经验 获得超6个赞

vara=function(){
this.aa="123";
}
a.prototype={
go:function(){
varthat=this;
$.get(xxx,function(){
bb=that.aa;//不失效
})
}
}
                            
查看完整回答
反对 回复 2019-04-16
?
慕尼黑的夜晚无繁华

TA贡献1864条经验 获得超6个赞

因为你的this指向错了
除了楼上那么写,也可以使用bind方法指定this的具体指向
vara=function(){
this.aa="123";
}
a.prototype={
go:function(){
$.get(xxx,function(){
bb=this.aa;//不失效
}.bind(this))
}
}
                            
查看完整回答
反对 回复 2019-04-16
  • 2 回答
  • 0 关注
  • 290 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信