js获取图片的宽度和高度

var image = new Image();
image.src = '图片的路径';
image.onreadystatechange=function(){
 if (image.readyState=="complete") {
 // alert(["图片大小是:",image.width,image.height]);
 document.getElementById("ss").style.width=image.width;
  document.getElementById("ss").style.height=image.height;
 }
}


本文永久地址:http://www.huanghaiping.com/article/29.html
本文出自 黄海平博客 ,转载时请注明出处及相应链接。

发表我的评论
  

网友最新评论 (0)

暂无评论
返回顶部