HTML5带有File API规范,该规范允许您创建应用程序,使用户可以在本地与文件进行交互。这意味着您可以加载文件并在浏览器中呈现它们,而无需实际上传文件。File API的一部分是FileReader接口,该接口使Web应用程序可以异步读取文件的内容。
这是一个简单的示例,它利用FileReader
该类将图像读取为DataURL并通过将src
image标签的属性设置为数据URL来呈现缩略图:
html代码:
<input type="file" id="files" />
<img id="image" />
JavaScript代码:
document.getElementById("files").onchange = function () {
var reader = new FileReader();
reader.onload = function (e) {
// get loaded data and render thumbnail.
document.getElementById("image").src = e.target.result;
};
// read the image file as a data URL.
reader.readAsDataURL(this.files[0]);
};
这是一篇有关在JavaScript中使用File API的好文章。
下面的HTML示例中的代码段可过滤掉用户选择的图像,并将所选文件呈现为多个缩略图预览:
function handleFileSelect(evt) {
var files = evt.target.files;
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML =
[
'<img style="height: 75px; border: 1px solid #000; margin: 5px" src="',
e.target.result,
'" title="', escape(theFile.name),
'"/>'
].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
<input type="file" id="files" multiple />
<output id="list"></output>