我正在从 PHP 返回的 json 数据中加载大约 50 张图像。为了避免额外调用 PHP 获取图像大小,我想在客户端执行此操作。这可能吗?
这是我当前用于构建图像列表的 jquery 调用:
// Create HTML for the images.
var html = '';
$.each(data.profiles, function() {
// Can I determine the img height or do I need to wait until the image is loaded?
html += '<a href="/view_profile.php?id='+this.user_id+'">';
html += '<img src="'+this.file_name+'" width="200" height="" style="border:0;">';
html += '</a><br>';
});