fileupload.html 721 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <form action="/word/upload/attachment" method="post" enctype="multipart/form-data">
  9. <p>请选择需要导入的文件,先执行上传,等待后台导入</p>
  10. <input type="text" name="reck" value=""/><br/>
  11. <!-- 可以选取一张或者多种图片上传 -->
  12. <input type="file" name="files" multiple/><br/>
  13. <!-- 每个input元素只能选中一个文件 -->
  14. <!-- <input type="file" name="files" /><br/>
  15. <input type="file" name="files" /><br/>
  16. <input type="file" name="files" /><br/> -->
  17. <input type="submit" value="开始上传"/>
  18. </form>
  19. </body>
  20. </html>