使用最新版本的froala编辑器(v2)在销毁内联编辑器时似乎无法正常工作。
它将此元素保留在编辑器元素中:<i class="fa fa-code"></i>
。如果您转到内联示例站点,则可以看到此行为:https://www.froala.com/wysiwyg-editor/v2.0/docs/examples/inline
在开发者控制台中输入以下内容:$(&#39; div#froala-editor&#39;)。froalaEditor(&#39; destroy&#39;);
有谁知道如何修补这个?它还将编辑器包装器保留在编辑器容器内,并在其上保留编辑器类,即使文档声明destroy命令将完全删除编辑器并将元素恢复到其初始化前状态。
非常感谢!
答案 0 :(得分:0)
请参考此JSFiddle-
https://jsfiddle.net/froala/8yxLcg5k/
$(function() {
$('div#froala-editor').froalaEditor();
});
// Destroy action.
$('a#btn-destroy').on('click', function (e) {
e.preventDefault();
if ($('div#froala-editor').data('froala.editor')) {
$('div#froala-editor').froalaEditor('destroy');
}
});
// Initialize action.
$('a#btn-init').on('click', function (e) {
e.preventDefault();
if (!$('div#froala-editor').data('froala.editor')) {
$('div#froala-editor').froalaEditor();
}
});