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]; //取得圖片的高度