我正在努力为 Internet Explorer 8 中的弹出窗口加载图像,我不知道为什么它返回“图像加载失败”。每时每刻。
我一开始以为是缓存问题,但看起来不是,所以现在我不知道它是什么......
var img = $("<img />").attr('src', imageSource)
.load(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
$("#imagePopup .content").html('Image failed to load.');
}
else {
$("#imagePopup .content").html(img);
}
});