我正在使用 ajax 调用从服务器接收长字符串中的图像
图片的 url 肯定在 result[1] 中。我使用了 width/naturalWidth 和 height/naturalHeight ,有时它们返回 0 ,在其他情况下它们返回正确的像素大小
var imgElement = jQuery("<img>").attr("src", result[1]);
var width = imgElement[0].naturalWidth;
var height = imgElement[0].naturalHeight;
if (width >= that.minImgPixels && height >= that.minImgPixels) {
image = result[1];
}
如何在不将其插入 dom 的情况下检查图像宽度和高度的正确方法?