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

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

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

白猪掌柜的 2019-04-14 09:51:29
vara=function(){this.aa="123";}a.prototype={go:function(){$.get(xxx,function(){bb=this.aa;//失效})}}这种情况怎么调用呢
查看完整描述

2 回答

?
BIG阳

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

vara=function(){
this.aa="123";
}
a.prototype={
go:function(){
varthat=this;
$.get(xxx,function(){
bb=that.aa;//不失效
})
}
}
                            
查看完整回答
反对 回复 2019-04-14
?
倚天杖

TA贡献1828条经验 获得超3个赞

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

添加回答

举报

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