我正在尝试使用 javascript 获取图像的尺寸——Mootools 是加载的库。
但是,即使我没有问题地获取图像元素,并且在元素的属性中看到有效的宽度和高度,但当我尝试访问该属性时,高度值始终返回为 0。
为什么?
window.addEvent("domready", function(){
var thisImg = $$("img.myimgclass");
console.dir(thisImg[0]); // prints all image data, including width AND height values
var height = thisImg[0].height;
var width = thisImg[0].width;
console.log(height); // prints 0 even though thisImg shows a valid height set
console.log(width); // prints valid width
});