Jquery についても同様の質問があります: asynchronously load images with jQuery
受け入れられた答えは非常に巧妙で、うまく機能します(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);
}
});
私の質問は、Dojo (エラー処理を含む) でこれに相当する標準的なものは何でしょうか?