我需要下载具有尺寸限制的图像,就像我可以执行以下操作的扩展程序一样:
upload: function (e) {
var files = e.files;
$.each(files, function () {
if (this.extension.toLowerCase() != ".jpg") {
ShowError('Only jpg are allowed', '');
e.preventDefault();
}
});
},
尺寸限制怎么样?我该怎么办?谢谢