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