1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>上传文件</title>
- </head>
- <body>
- <form action="/upload" method="post" enctype="multipart/form-data">
- <input type="file" name="ufile"> <br>
- <input type="file" name="ufiles" multiple> <br>
- <input type="submit" value="上传">
- </form>
- </body>
- </html>
|