gpt4 book ai didi

javascript - 检查图像是否已加载,跨浏览器

转载 作者:行者123 更新时间:2023-12-03 16:46:20 24 4
gpt4 key购买 nike

我需要一个跨浏览器解决方案来确定图像是否已完成加载。

我知道这件事:

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 的方式执行此操作?

最佳答案

东西如:

var theImage = new Image()
theImage.src = 'http://pieisgood.org/images/slice.jpg' //yum, pie :)
theImage.isLoaded = false;
//later...
theImage.onload = function(){
theImage.isLoaded = true;
//do stuff
}
if(theImage.isLoaded){
alert("Loaded");
}
document.body.appendChild(theImage); // VERY needed

应该可以。

就像它在真正加载图像时设置属性一样。 :)

关于javascript - 检查图像是否已加载,跨浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16246712/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com