网页端上传图片案例,包含功能:压缩后上传、解决了图片颠倒(朝向错误)问题、安卓手机不能现拍、安卓手机部分图片不能上传jquery
引用 js:chrome
jquery.js浏览器
exif.js网络
LocalResizeIMG.js测试
完整测试例子代码包下载blog
一:下面这种方式,chrome浏览器要好久才能反应过来(断开网络,反应迅速)图片
<input type="file" id="file" style="display:none">ip
二:下面这种方式,安卓手机有些图片上传不了(并且不能使用现拍功能:即只能上传手机上已有的图片)get
<input type="file" accept="image/jpeg,image/png" id="file" style="display:none">input
三:下面这种方式,解决了上面全部的问题
<input type="file" accept="image/*" id="file" style="display:none">