gpt4 book ai didi

jquery - 使用 jQuery 获取多个文件选择的所有值

转载 作者:行者123 更新时间:2023-12-03 22:16:16 25 4
gpt4 key购买 nike

Possible Duplicate:
Retrieving file names out of a multi-file upload control with javascript

得到这个:

<input type="file" name="file1" multiple="multiple" />

在 jQuery 中使用它:

$("input[name=file1]").change(function() {
$("input[name=file]").val($("input[name=file1]").val());
});

现在我的问题是这样的:它只给出第一个选定的文件,我想拥有它们全部......如何做到这一点?谢谢!

最佳答案

虽然我在评论中链接到了一个可能的骗局,但它是一个纯粹的 JavaScript 解决方案。如果您愿意,这里有一个 jQuery 版本: jsFiddle example

$("input[name=file1]").change(function() {
var names = [];
for (var i = 0; i < $(this).get(0).files.length; ++i) {
names.push($(this).get(0).files[i].name);
}
$("input[name=file]").val(names);
});​

关于jquery - 使用 jQuery 获取多个文件选择的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13652955/

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