gpt4 book ai didi

javascript - 如何在javascript中上传多个文件之前显示选定的文件名

转载 作者:行者123 更新时间:2023-11-29 23:23:18 26 4
gpt4 key购买 nike

如何使用表格而不是列表进行对齐。还有我们点击取消按钮的文件列表需要从列表中删除。

updateList = function () {
var input = document.getElementById('fileUploader');
var output = document.getElementById('divFiles');

output.innerHTML = '<ul style="list-style-type:none">';
for (var i = 0; i < input.files.length; ++i) {
output.innerHTML += '<li>' + input.files.item(i).name + ' <button>X</button></li> ';
}

output image for the above code

最佳答案

  updateList = function () {
var input = document.getElementById('fileUploader');
var output = document.getElementById('divFiles');var HTML = "<table>";
for (var i = 0; i < input.files.length; ++i)
{
HTML += "<tr><td>" + input.files.item(i).name + "</td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button>X</button></td></tr>";
}
HTML += "</table>";
output.innerHTML = HTML;

}

关于javascript - 如何在javascript中上传多个文件之前显示选定的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49933857/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com