gpt4 book ai didi

jquery 加载功能在 Internet Explorer 9 中不起作用

转载 作者:行者123 更新时间:2023-12-01 01:54:03 25 4
gpt4 key购买 nike

我想在所有图像加载完毕后收到警报。此代码适用于除 ie 之外的所有浏览器

$('img').load(function(){    
alert('hello')
});

在 ie9 中不工作。任何解决此问题的方法

最佳答案

问题很可能源于这个基本问题:

var i = new Image();
i.src = '/path/to/image'; // already cached by browser
i.onload = function() {
alert('loaded!'); // will never get called
};

也就是说,浏览器已经有一种机制可以告诉您所有图像(和其他外部资源)何时加载:

$(window).load(function() {
alert('hello');
});

关于jquery 加载功能在 Internet Explorer 9 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24199300/

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