summernote:如何限制文件大小?

时间:2017-03-14 22:28:27

标签: jquery summernote

我正在使用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 ?
                            }
                        }

0 个答案:

没有答案