1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <!DOCTYPE html>
| <html lang="en">
| <head>
| <meta charset="UTF-8">
| <title>test</title>
| </head>
| <body>
| this is test page
| <form method="post" enctype="multipart/form-data">
|
| 选择文件:<input type="file" name="image" accept="image/gif,image/png,image/jpeg"/>
| <input type="submit" value="提交" />
| </form>
| </body>
| </html>
|
|