如何使用<input type =“ file”>选择多个文件?

如何选择多个文件<input type="file">



慕尼黑5688855
浏览 4537回答 3
3回答

慕森王

新答案:在HTML5中,您可以添加multiple属性以选择多个文件。<input type="file" name="filefield" multiple="multiple">旧答案:每个只能选择1个文件<input type="file" />。如果要发送多个文件,则必须使用多个输入标签或使用Flash或Silverlight。

慕后森

还有HTML5 <input type="file" multiple />(规范)。我认为浏览器在台式机上的支持非常好(只是IE 9和更低版本不支持),而在移动设备上的支持则不太好,因为很难根据平台和版本正确实施。

墨色风雨

整个过程应如下所示:<form enctype='multipart/form-data' method='POST' action='submitFormTo.php'>&nbsp;&nbsp; &nbsp; <input type='file' name='files[]' multiple />&nbsp; &nbsp; <button type='submit'>Submit</button></form>确保标签中包含该enctype='multipart/form-data'属性<form>,否则提交后将无法在服务器端读取文件!
打开App,查看更多内容
随时随地看视频慕课网APP