<!DOCTYPE html><html><head> <title>文件上传页面</title></head><body> <h1>文件上传</h1> <form action="/upload" method="post" enctype="multipart/form-data"> <label for="file">选择文件:</label> <input type="file" id="file" name="file"><br><br> <input type="submit" value="上传"> </form></body></html>这段代码怎么改才能上传图片
时间: 2023-07-19 12:32:11 浏览: 116
如果想要上传图片,只需要在 input 标签中加上 accept 属性并设置为 "image/*" 即可,如下所示:
```
<!DOCTYPE html>
<html>
<head>
<title>文件上传页面</title>
</head>
<body>
<h1>文件上传</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<label for="file">选择文件:</label>
<input type="file" id="file" name="file" accept="image/*"><br><br>
<input type="submit" value="上传">
</form>
</body>
</html>
```
这样用户在上传文件时只能选择图片文件,其他类型的文件将被过滤掉。
阅读全文