如何在使用 jQuery 上传文件之前从文件上传控件中删除文件
Posted
技术标签:
【中文标题】如何在使用 jQuery 上传文件之前从文件上传控件中删除文件【英文标题】:how to remove a file from file upload control before uploading it using jQuery 【发布时间】:2021-02-15 18:10:14 【问题描述】:我正在使用多文件上传控件来上传文件。 我在上传之前列出了文件,以便用户可以看到他们上传的文件的名称。 我在每个文件名行中都有一个删除按钮。 当我单击删除按钮时,我试图从列表中删除文件,以防我在上传之前更改了文件。 我的想法已经不多了
var fileInput = document.getElementById('inputfile');
var fileListDisplay = document.getElementById('allfiles');
var fileList = [];
var renderFileList, sendFile;
fileInput.addEventListener('change', function (evnt)
fileList = [];
for (var i = 0; i < fileInput.files.length; i++)
fileList.push(fileInput.files[i]);
renderFileList();
);
renderFileList = function ()
fileListDisplay.innerhtml = '';
fileList.forEach(function (file, index)
var fileDisplayEl = document.createElement('p');
fileDisplayEl.innerHTML = file.name +"<div class=deletfile></div>";
fileListDisplay.appendChild(fileDisplayEl);
);
;
$(document).on('click','.deletfile', function()
var filen=($(this).parent().text());
console.log(fileList);
const index = fileList.indexOf(filen);
console.log(index,filen);
if (index > -1)
fileList.splice(index,1);
//console.log(fileList);
);
<input id="inputfile" type="file" multiple> <br><div id='allfiles'></div>
怎么做?
这是我的代码
删除文件功能是我想要做的。
【问题讨论】:
【参考方案1】:从您的代码中,我可以看到您忘记删除为什么文件仍然存在的 dom。
另外,为了简化代码,我们可以在删除按钮内附加data-index
,以便在删除时记住文件索引,这比比较文件名字符串要容易。
这是修改后的代码。
var fileInput = document.getElementById('inputfile');
var fileListDisplay = document.getElementById('allfiles');
var fileList = [];
var renderFileList, sendFile;
fileInput.addEventListener('change', function (evnt)
fileList = [];
for (var i = 0; i < fileInput.files.length; i++)
fileList.push(fileInput.files[i]);
renderFileList();
);
renderFileList = function ()
fileListDisplay.innerHTML = '';
fileList.forEach(function (file, index)
var fileDisplayEl = document.createElement('p');
fileDisplayEl.innerHTML = `$file.name <button data-index="$index" class='deletfile'>X</button>`;
fileListDisplay.appendChild(fileDisplayEl);
);
;
$(document).on('click','.deletfile', function()
const index= $(this).attr('data-index');
fileList.splice(parseInt(index, 10), 1);
$(this).parent().remove();
);
【讨论】:
以上是关于如何在使用 jQuery 上传文件之前从文件上传控件中删除文件的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 JavaScript/jQuery 从 ASP.NET Web 窗体的 GridView 内部同时上传多个文件?
上传/下载之前/之后的客户端(javascript/jQuery)文件操作
使用 html 和 jquery 在显示时和上传到服务器之前获取文件名