如何使用 html5 jquery 拉取多个文件

发布于 2024-11-03 09:43:29 字数 128 浏览 0 评论 0原文

如何使用 FileSystem Api (Html5) 提取多个文件并将其作为数组发送到 javascript。 实际上,我正在尝试选择多个文件并将它们添加到我的幻灯片中。

任何帮助将不胜感激。

问候 ——阿杰

How to pull multiple files using FileSystem Api (Html5) and send to javascript as an array.
Actually I'm trying to select multiple files and add them to my slideshow.

Any help would be appreciated.

Regards
--A.J

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-11-10 09:43:29

您需要将 multiple 属性添加到您的输入中。

 <input type="file" multiple />

您还可以添加 webkitdirectorydirectory 和/或 mozdirectory指定您希望允许用户上传整个文件夹。显然,这些不是标准的(尽管普通的 directory 是/可能是)

然后在您的 JavaScript 中,您的输入元素将有一个 files 数组,其中包含所选内容的元信息文件,适合在 FileReader API 中使用。例如:(

 <input type="file" multiple onchange="doSomethingWithThese(this.files)" />     

我不推荐内联JavaScript,只是举例)

You need to add the multiple attribute to your input

 <input type="file" multiple />

You can also add webkitdirectory, directory, and/or mozdirectory to specify you want to allow users to upload entire folders. These are not standard, obviously (although plain ol' directory is/may be)

Then in your JavaScript, your input element will have a files array containing meta info on the selected files, ripe for using in the FileReader API. For example:

 <input type="file" multiple onchange="doSomethingWithThese(this.files)" />     

(I don't recommend the inline JavaScript, just for example)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文