Posted in Javascript onSeptember 20, 2011
1、获取图片大小的函数getImageSize
function getImageSize(imageEl) { var i = new Image(); //新建一个图片对象 i.src = imageEl.src; //将图片的src属性赋值给新建图片对象的src return new Array(i.width, i.height); //返回图片的长宽像素 //return [i.width, i.height]; }
2、示例
var imgEl = document.getElementById(imgEl), imgSize = getImageSize(imgEl), imgWidth = imgSize[0], //取得图片的宽度 imgHeight = imgSize[1]; //取得图片的高度
js获取图片大小的函数代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@