js判断图片加载完成
<!DOCTYPE> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> </head> <body> <img id="mainPic" src="http://img1c.xgo-img.com.cn/pics/1843/b1842753.jpg" /> <script> loadingImg(‘http://img1c.xgo-img.com.cn/pics/1843/b1842753.jpg‘,getWH); function getWH(){ set(this.width, this.height) } function loadingImg(url,fun){ var _Img = new Image(); _Img.src = url; /*判断是否已加载*/ (_Img.complete) ? fun : _Img.onload = fun; } function set(w,h){ console.log(w,h) } </script> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。