<script> function getSize(img) { if(typeof(img)!='object') img=document.getElementById(img); if(img==null) return; var image=document.createElement("img"); image.οnlοad=function (){ var width=this.width; var height=this.height; alert("width:"+width+" height:"+height) }; image.src=img.src; } </script>
<img src="http://profile.youkuaiyun.com/dh20156/picture/2.jpg" width="1" height="1" οnlοad="getSize(this)">