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();
スコープの問題だと思いますが、どうすればいいのかわかりません。何か案が?前もって感謝します。