1
有jQuery的類似的問題在這裏: Asynchronously load images with jQueryCan Dojo .ajax加載圖片?
接受的answer是相當聰明的,並且效果很好(jQuery的):
var img = $("<img />").attr('src', 'http://somedomain.com/image.jpg')
.load(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
alert('broken image!');
} else {
$("#something").append(img);
}
});
我的問題是,什麼是規範equivlent本在Dojo中(包括錯誤處理)?