基本上,我想确定是否应该使用AJAX下载文件,具体取决于文件大小。
我猜这个问题也可以表述为:我如何仅获取ajax请求的标头?
编辑 :评论中的ultima-rat0告诉了我两个已经被问到的显然与这个相同的问题。它们非常相似,但是都需要jQuery。我想要一个非jQuery解决方案。
您可以手动获取XHR响应头数据:
http://www.w3.org/TR/XMLHttpRequest/#the- getresponseheader()-方法
此函数将获取所请求URL的文件大小:
function get_filesize(url, callback) { var xhr = new XMLHttpRequest(); xhr.open("HEAD", url, true); // Notice "HEAD" instead of "GET", // to get only the header xhr.onreadystatechange = function() { if (this.readyState == this.DONE) { callback(parseInt(xhr.getResponseHeader("Content-Length"))); } }; xhr.send(); } get_filesize("http://example.com/foo.exe", function(size) { alert("The size of foo.exe is: " + size + " bytes."); });