有跨域图像,通过图像预加载加载30秒(其 1x1 gif,但如果在 30 秒后服务器返回)。
window.onload = function () {
var img = new Image();
img.onload = function () { alert('Yey!'); };
img.onerror = function () { alert('Doh!'); };
img.src = 'http://cross-domain.com/1x1px.gif';
};
除 Opera 之外的所有浏览器均不显示“正在加载...”模式。通过链接、脚本、Iframe、CSS 预加载图像 - 效果相同。
如何在 Opera 中预加载图像时禁用“正在加载...”模式?