笔记 - a502781464/Simple-Ajax-Uploader GitHub Wiki
Image size is less than 2 MB
(image format support jpg,jpeg,png)
Uploading...
'); }, onSizeError: function() { ui.warning('Image size is less than 2 MB'); }, onExtError: function() { ui.warning('image format support jpg,jpeg,png'); }, onComplete: function (filename, response) { if (!response) { alert(filename + 'upload failed'); return false; } img = response.file; $('#driveLicence').val(img).next().remove(); $('#driveLicence-small-img').html(''); } });