文件上传 accept 兼容性

  • 写法1 在chrome下有反应很慢的问题,不要使用
    写法2 在firefox、Safari 中有兼容性问题,弹出选择框不会高亮显示jpg后缀的图片
    写法3 在写法2上都添加了image/jpeg,解决了 弹出选择框不会高亮显示jpg后缀图片 的问题

  • 写法1:

<input type="file" name="pic" accept="image/*">

写法2:

<input type="file" name="pic" accept="image/jpg,image/png">

写法3:

<input type="file" name="pic" accept="image/jpg,image/jpeg,image/png">
原文地址:https://www.cnblogs.com/cag2050/p/7481405.html