在这种情况下,我有两个文件类型的输入控件。
html:
<input type="file" id="file1" multiple="multiple" />
<input type="file" id="file2" multiple="multiple" />
<input id="btn1" type="button" />
脚本:
<script>
var fileList = [];
$('#file1').change(function (e) {
var files = e.target.files;
$.each(files, function (k, v) {
fileList.push(files[k]);
});
});
$('#btn1').click(function(){
//Stuffs to be added for pushing the array of File object from "fileList" array to "file2"
//How to achieve it or is that impossible to do it?
});
</script>
我想实现以下步骤:
第 1 步:在“file1”输入更改时,它将文件推送到数组中。
第 2 步:单击“btn1”按钮时,我需要将 File 对象数组设置或推送到“file2”输入控件中。但我做不到,我已经用谷歌搜索过了。我没有找到解决方案。
我无法实现第 2 步并帮助我完成它。
还提供一些可能对我有帮助的链接。