我正在尝试将 ajax 回调函数变量值分配给现有变量。
我有
function test(){
}
test.prototype.click=function(){
this.count;
//call ajax codes.....
//ajax callback function
ajax.callback=function(var1){
//I want to assign returned data to this.count property.
this.count=var1.length
}
}
test.prototype.show=function(){
//wont work, it will show undefined...
alert(this.count);
}
var t=new test();
t.click();
t.show();
我认为这是范围问题,但我不知道如何解决。任何想法?提前致谢。