一次销毁summernote之后。它将无法编辑相同的Summernote。
修改代码:-
$('.summernote').code($scope.policy.Description);
销毁代码:-
$('.summernote').destroy();
答案 0 :(得分:0)
Destroy:-
当编辑器被$(‘..’).summernote(‘destroy’);
破坏时,将调用此方法。
您应该分离事件并在初始化时删除元素。
this.destroy = function () {
this.$button.remove();
this.$button = null;
}
您可以通过API禁用编辑器。
//If you want to disable editor, call API with disable
$('.summernote').summernote('disable');
//If you want to enable editor again, call API with enable.
$('.summernote').summernote('enable');
并且如果您对夏季笔记生成的类有疑问。
//If you want to enable editor, make content editable true
$('.note-editable').attr('contenteditable', true);
//If you want to disable editor, make content editable false
$('.note-editable').attr('contenteditable', false);