发布于 2024-01-03 23:38:25 浏览 572 次
// 获取 CKEditor 实例的 DOM 元素
var editorElement = document.getElementById('editor');
// 销毁 CKEditor 实例
CKEDITOR.remove(editorElement);
// 重新加载 CKEditor 实例
CKEDITOR.replace(editorElement);
// 监听 popstate 事件
window.addEventListener('popstate', function(event) {
// 重建 CKEditor 实例
CKEDITOR.replace('editor');
});