是否可以通过 jQuery 事件检测图像加载?
要使用 jQuery 检测图像加载,请使用 load() 事件处理器。
注意:load() 方法在 jQuery 版本 1.8 中已弃用。它在版本 3.0 中完全删除。要查看其工作情况,请在 3.0 之前添加 jQuery 版本的 CDN。
示例
你可以尝试运行以下代码,学习如何检测图像加载
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("img").load(function(){ alert("Image successfully loaded."); }); }); </script> </head> <body> <img src="/videotutorials/images/tutor_connect_home.jpg" alt="Tutor" width="304" height="236"> <p><strong>Note:</strong> The load() method deprecated in jQuery version 1.8. It was completely removed in version 3.0. To see its working, add jQuery version for CDN before 3.0.</p> </body> </html>
广告