$('#question_editor').summernote({
lang: 'zh-CN',
height: 180,
placeholder:'您可以在这里继续补充问题细节',
toolbar: [ ['common', ['style','bold','ol','link','picture','clear','fullscreen']] ],
callbacks: {
onChange:function (contents, $editable) {
var code = $(this).summernote("code");
$("#question_editor_content").val(code);
},
onImageUpload: function(files) {
upload_editor_image(files[0],'question_editor');
}
}
});