1
<input
type="file"
id="fileElem"
multiple
accept="image/*"
style="display:none"
onchange="handleFiles(this.files)">
<a href="#" id="fileSelect">Select some files</a>
<div id="fileList">
<p>No files selected!</p>
</div>
當我選擇5個文件:如何動態刪除其中的一些?如何從輸入類型=「文件」中刪除一個,兩個文件多個?
我知道如何清除所有文件How can I clear an HTML file input with JavaScript?