上传前显示图像预览在我的HTML表单中,我使用类型文件进行输入,例如: <input type="file" multiple>然后单击输入按钮选择多个文件。现在我想在提交表单之前显示选定图像的预览。如何在HTML 5中做到这一点?
3 回答
慕容3067478
TA贡献1773条经验 获得超3个赞
FileReader
src
<input type="file" id="files" /><img id="image" />
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]);};
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>
- 3 回答
- 0 关注
- 397 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消