Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在浏览时选择一个文件夹,我已经实现了
<input name="name" type="file"/>
有了这个我可以选择一个文件,但我想选择一个文件夹,谁能帮我.....
据我了解,您只能在浏览器中选择单个文件而不是文件夹。
从“HTML5”开始,只要您使用的行器支持这一点,就可以通过添加输入元素“multiple”-attribute 来启用多个文件选择:
<input type="file" multiple>
但是,您无法使用 JavaScript 选择完整的文件夹