3
我在下面的代码中尝试从实际URL获取图片大小(以KB/MB/GB为单位)。但它不起作用。如何从网址获取图片大小
var xhr = new XMLHttpRequest();
xhr.open('HEAD', 'http://www.2015autoblog.com/wp-content/uploads/2014/09/2015-Toyota-Land-Cruiser-Front.jpg', true);
调试
alert(xhr.status);
if (xhr.status == 200) {
alert('Size in bytes: ' + xhr.getResponseHeader('Content-Length'));
} else {
alert('ERROR');
}
不是高度和宽度。我需要KB/MB的大小。如1 MB等 – 2014-10-17 08:00:48
您是否找到任何解决方案? – 2017-09-07 13:17:54