BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script src="//cdn.staticfile.net/jquery/2.0.0/jquery.min.js"> </script> <script> $(document).ready(function(){ $("img").load(function(){ alert("图片已载入"); }); }); </script> </head> <body> <img alt="图片文字描述" height="236" src="http://www.bootwiki.com/wp-content/uploads/2015/11/rock600x400.jpg" width="304"> <p><b>注意:</b> 这个事件在不同浏览器效果有所不同,如果图片已缓存该事件则不会触发。</p> </body> </html>
运行结果