我需要一个跨浏览器解决方案来查找图像是否已完成加载。
我知道这件事:
var theImage = new Image()
theImage.src = 'http://pieisgood.org/images/slice.jpg' //yum, pie :)
//later...
if (theImage.complete) {
//do stuff
}
是否兼容跨浏览器(我的意思是 FF、Chrome、Safari、Opera、IE8+)?如果没有,我该如何以跨浏览器和无 jQuery 的方式执行此操作?