HTML 参考手册
HTML <input> accept 属性
规定在文件上传中服务器只接受图像文件
源代码:
点击运行 »
<form action="demo_form.html"> <input type="file" name="pic" accept="image/*"> <input type="submit"> </form>
运行结果:
点击运行 »