是否有任何方法通过单击summernote外部禁用summernote。
这里是我的夏季笔记,现在的问题是,当我点击编辑器之外的任何地方,包括工具栏,它将被禁用,但我不想。

禁用夏季说明的代码.
$('#textarea').on('summernote.blur', function(event) {
$('#textarea').summernote('destroy');
$('#textarea').hide();
});发布于 2018-10-25 10:33:41
下面的代码对我有用-
<div class="col-md-9 dv100 txtarea pd-8" id="summernote"></div>jQuery
$(document).on("click", function(event) {
if(!$(event.target).hasClass('txtarea') ) {
$('.txtarea').summernote('destroy');
}
});https://stackoverflow.com/questions/51356209
复制相似问题