如下代码,在success如何调用a(); 呢? a(); this.a(); 都不行 function test(){
this.a=function(){ ...}
this.b=function(){ $.ajax({ async:true, url: "aa.asp", type:"get", success:function(_text){ //在此如何调用 a(); } });
}
}
去掉this function test(){ var a=function(){ ...}
var b=function(){ $.ajax({ async:true, url: "aa.asp", type:"get", success:function(_text){ a(); } });
}
}
|