1
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()」函數中無效!Javascript圖像onload callback class-intern函數
alert(「!」);被執行,但不是Objekt.prototype.autoSize() - 例如函數!
我需要做些什麼來調用我的「class-intern」函數(例如autoSize)?
完美!非常感謝你! – user1511417 2012-07-09 09:04:13