Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
var editor = CKEDITOR.instances['fullHTMLTextArea']; if(editor) { editor.destroy(true); }
任何人都可以正确解释吗?
根据CKEDITOR API doc
var editor = CKEDITOR.instances['fullHTMLTextArea'];
部分告诉
保存对创建的所有编辑器实例的引用。此对象中的属性名称对应于实例名称,它们的值包含代表它们的 CKEDITOR.editor 对象。
和
if(editor){ editor.destroy(true);---> must be //editor.destroy(); }
告诉
销毁编辑器实例,释放它使用的所有资源。如果编辑器替换了一个元素,该元素将被恢复。