BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <script src="//cdn.staticfile.net/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("img").load(function(){ $("div").text("Image loaded"); }); }); </script> </head> <body> <img alt="Cinqueterra" height="236" src="img_moustiers-sainte-marie.jpg" width="304"> <div>Image is currently loading.</div> <p><b>Note:</b> Depending on the browser, the load event may not trigger if the image is cached.</p> </body> </html>
运行结果