如果图像无法加载,我想加载默认图像。加载图像后,我还想调用 getLoadComplete() 。如何将 this.getLoadComplete() 函数传递到调用 img.onerror 的函数中?
这是我得到的代码:
img.onload = this.getLoadComplete();
img.onerror = function(){
img.src = "http://xxxx.com/image.gif";
}
img.src = request.url;