How to select multiple files for upload?

2020-01-29 06:50发布

How to select multiple files for upload : enter image description here

9条回答
Ridiculous、
2楼-- · 2020-01-29 07:46

This depends on the browser. Newer versions of firefox and chrome support this because they started to implement HTML5 specification. This is the syntax:

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

Firefox >= 3.6, Chrome >= 2, Safari >= 4 support multiple file input.

For older browsers the only good solutions are flash or javascript plugins. Here is a good resource for jquery uploaders ( some support multiple files ): http://creativefan.com/10-ajax-jquery-file-uploaders/

查看更多
够拽才男人
3楼-- · 2020-01-29 07:52

Flash is the only option except HTML5.

查看更多
兄弟一词,经得起流年.
4楼-- · 2020-01-29 07:53

Use the file input form element more than once, give it a different name and you have multiple upload fields on one page. No need to learn anything else.

查看更多
登录 后发表回答