Is it possible to select and upload multiple files at one time in Internet Explorer?

后端 未结 1 1185
北荒
北荒 2020-11-30 12:49

I\'m writing a form to select and upload multiple files at one time. This seems to be a pretty straight forward task in FF and Chrome but appears to be a limitation in IE 7.

相关标签:
1条回答
  • 2020-11-30 13:23

    IE 7 currently does not (and probably never will) implement the multiple option for file upload input elements which Chrome/FF/Safari/Opera implement. Therefore there is no script/HTML support for receiving multiple files with a single HTML input.

    The only option you have for multiple file upload with a single input object is either a Flash-based solution or an Active X control. Alternatively you can create multiple file input elements using javascript.

    0 讨论(0)
提交回复
热议问题