问题?前端上传文件,筛选文件格式
1.基本使用它格式
在上传文件的时候,需要限制指定的文件类型。
如:
<input type="file" accept="image/*" />
accept表示可以上传文件类型,image表示图片,*表示所有支持的格式。
<input type="file" name="pic" accept="image/jpeg,application/vnd.openxmlformats-
officedocument.presentationml.presentation,application/vnd.ms-powerpoint" />
2.有哪些格式选择
===============================================================&