在Internet Explorer中输入文件长度

我想获取为输入文件选择的文件数量。 在HTML中,我有:

<input id="photoFile" type="file" name="pictures" multiple="multiple"/>

我使用JQuery和我有:

$('#photoFile').get(0).files.length;

但是我发现这不是Internet Explorer的解决方案。 它适用于Chrome,Firefox,Safari和Opera。 如何使它在IE 8+中也能正常工作?


即使IE9不支持HTML5 File API,因此它会为文件属性返回未定义的值。


它是File API,它在IE 8和IE 9中不受支持。


由于IE9不支持File API,因此您可以在Github上尝试使用此Polyfill。

链接地址: http://www.djcxy.com/p/42003.html

上一篇: Input File Length in Internet Explorer

下一篇: down menu explosion in Internet Explorer 7