富文本summernote.js屏蔽图片上传功能
summernote.js 默认是允许上传图片及视频的,但是有些业务并不需要上传图片,只需要一些文字的排版及处理。此时只要自定义toolbar即可。
$('.summernote').summernote({
placeholder: '请输入定点教学内容',
height : 192,
lang : 'zh-CN',
toolbar: [
[ 'style', [ 'style' ] ],
[ 'font', [ 'bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript', 'clear'] ],
[ 'fontname', [ 'fontname' ] ],
[ 'fontsize', [ 'fontsize' ] ],
[ 'color', [ 'color' ] ],
[ 'para', [ 'ol', 'ul', 'paragraph', 'height' ] ],
[ 'table', [ 'table' ] ],
[ 'insert', [ 'link'] ],
[ 'view', [ 'undo', 'redo', 'fullscreen', 'codeview', 'help' ] ]
]
});本文原创,转载必追究版权。


