file input size issue in safari for multiple file selection

后端 未结 4 1508
广开言路
广开言路 2020-12-10 04:50

I am experiencing inconsistencies with regard to multiple file upload in Safari 5.1 on Windows Vista (haven\'t tried other platforms). The input element has the multi

相关标签:
4条回答
  • 2020-12-10 05:11

    Workaround for us was to remove multiple option... we got file size of 0, but we also got bad filenames with leading strange character added to the filename. Maybe that is why we get 0 in the size: because the first property (filename) is not split correctly with the presence of that bad character at the end of the filename.

    0 讨论(0)
  • 2020-12-10 05:35

    Check this hack.

    It explains in detail how to remove multiple option for Safari only, leaving other browsers alone.

    Any workarounds for the Safari HTML5 multiple file upload bug?

    0 讨论(0)
  • 2020-12-10 05:35

    A variation of this issue also seems to have infected mobile Safari on iOS 7, which just released. If you have a "multiple" file input field, and select a video, then the File API returns a file size of 0. Indeed the jsfiddle at the top of this page, reproduces this.

    Selecting one or more photos with the "multiple" option is fine - this only affects videos.

    0 讨论(0)
  • 2020-12-10 05:37

    IT's a Safari bug. No solution for the moment. here is the test i did http://jsfiddle.net/rHd26/6/

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