function photoCompress(file,w,callback,fjnum){
var ready=new FileReader();
ready.readAsDataURL(file);
ready.onload=function(){
var re=this.result;
alert("222"+this.result)
}
alert("111"+ready.result)
}
代码如上,目前的效果是先执行了alert("111"+ready.result) 在执行alert("222"+this.result), 我想确保先执行alert("222"+this.result),在执行alert("111"+ready.result) 改怎么修改