$('#fileupload').fileupload({
url: 'server',
dataType: 'json',
// Enable image resizing, except for Android and Opera,
// which actually support image resizing, but fail to
// send Blob objects via XHR requests:
disableImageResize: /Android(?!.*Chrome)|Opera/
.test(window.navigator && navigator.userAgent),
imageMaxWidth: 800,
imageMaxHeight: 800,
imageCrop: true // Force cropped images
})上面是官方的例子,这句话没太明白which actually support image resizing, but fail to send Blob ob
上传完成提示 文件后缀不正确,图片没有上传成功。求助,怎么使用jquery file upload 在android浏览器上先压缩图片,再上传
最佳答案