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

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