手机上传图片的一些小问题

网页端上传图片案例,包含功能:压缩后上传、解决了图片颠倒(朝向错误)问题、安卓手机不能现拍、安卓手机部分图片不能上传

引用 js:

  jquery.js

  exif.js

  LocalResizeIMG.js

完整测试例子代码包下载

一:下面这种方式,chrome浏览器要很久才能反应过来(断开网络,反应迅速)

<input type="file" id="file" style="display:none">

二:下面这种方式,安卓手机有些图片上传不了(而且不能使用现拍功能:即只能上传手机上已有的图片)

<input type="file" accept="image/jpeg,image/png" id="file" style="display:none">

三:下面这种方式,解决了上面所有的问题

<input type="file" accept="image/*" id="file" style="display:none">

原文地址:https://www.cnblogs.com/liaolongjun/p/7645005.html