var nowCount = 0;
$("img").load(function(){
imgCount++;
if (nowCount == imgsCount)
do something ...
});
imgsCount ::我要加载的图片数量
1-此代码是否与所有浏览器兼容?
2-我怎么知道图像是否加载失败?
答案 0 :(得分:2)
这里有很多可疑代码:
nowCount
应该做什么? unload
事件吗?如果要在后台加载图像,则需要创建新的图像元素并附加源属性。