<div class="summernote" style="height: 500px;"></div>
$(function(){
$('.summernote').summernote({
height : '400px',
lang : 'zh-CN',
callbacks: {
onImageUpload: function(files, editor, $editable) {
var formData = new FormData();
formData.append("file", files[0]);
$.ajax({
type: "POST",
url: ctx + "common/upload",
data: formData,
cache: false,
contentType: false,
processData: false,
dataType: 'json',
success: function(result) {
if (result.code == web_status.SUCCESS) {
$(".summernote").summernote('editor.insertImage', result.url, result.fileName);
} else {
$.modal.alertError(result.msg);
}