我正在尝试获取远程图像的分辨率。
function getMaxRes(url)
{
var imgHeight=0;
$("<img/>").attr("src", url).load(function(){
s = {w:this.width, h:this.height};
imgHeight = this.height ;
console.log(imgHeight); // printed correctly
});
console.log(imgHeight); //prints 0
}
getMaxRes(< url to the image > )
我尝试过使用全局变量。如何使函数返回图像高度。