1. 使用 disable 方法
Summernote 提供了一个 disable 方法,可以让编辑器变为只读状态。你可以在初始化 Summernote 编辑器之后,调用这个方法:
$('#' + this.id).summernote({
height: 300, // 设置编辑器高度
toolbar: [ // 自定义工具栏,必要时可以简化
['style', ['bold', 'italic', 'underline', 'clear']],
['font', ['strikethrough', 'superscript', 'subscript']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']]
]
})