我有意见
<input id="0_input_id"
onchange="input_change(0)"
name="files[]"
type="file"
required multiple
class="drop_zone_input">
并具有删除功能
function delete_file(file_count, i, input_count)
{
const input = document.getElementById("0_input_id");
input.files[i] = undefined;
}
但是这个文件没有删除,我不能使用input.value=null,因为它会清除所有输入,帮助删除1个文件。
暂无答案!
目前还没有任何答案,快来回答吧!