源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("img").load(function(){ $("div").text("图片加载完成!"); }); }); </script> </head> <body> <img src="https://static.jyshare.com/libs/images/mobile-icon.png" alt="Cinqueterra" width="304" height="236"> <div>图片正在加载中。。。</div> <p><b>注意:</b>根据浏览器的不同,如果图像被缓存,加载事件可能不会触发。</p> </body> </html>
运行结果: