使用jQuery 非同步載入映像
問題:
問題:$.ajax({ url: "http://somedomain.com/image.jpg", timeout:5000, success: function() { }, error: function(r,x) { } });
問題:
嘗試加載外部圖像使用有以下程式碼的jQuery:var img = $("<img />").attr('src', 'http://somedomain.com/image.jpg') .on('load', function() { if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) { alert('broken image!'); } else { $("#something").append(img); } });
以上是可以用jQuery異步載入圖片嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!