Objekt.prototype.loadImg = function(pImg){
if(pImg!=null){
this.imgLoaded=false;
this.img = null;
this.img = new Image();
this.img.src = pImg;
this.img.onload = function(){
alert("!");
this.autoSize();
this.imgLoaded=true;
};
}
}
我的问题是“this”在“onload = function()”函数中无效!
警报(”!”); 被执行,但不是 Objekt.prototype.autoSize() 函数,例如!
我该怎么做才能调用我的“实习生”功能(例如 autoSize)?