我正在使用summernote jquery插件
我试图限制数据图像的大小(例如:30千字节)
callbacks: {
onImageUpload: function(files, editor, $editable) {
if (files[0].size>30000) {
alert('Size too big')
return false;
} else {
// What to do to insert the file into the summer editor ?
}
}