請幫助我 - 我需要對CKeditor進行完全重新初始化。我不想重新初始化CKeditor的實例,但我想完全重新加載它。有什麼辦法可以實現它嗎? 我試圖做下一個:如何使CKEditor全部重新初始化?
delete window.CKEDITOR;
然後:
//clear for old sources
$('script[src*="/includes/contentEditor/ckeditor/"]').each(function() {
$(this).remove();
});
$('link[href*="/includes/contentEditor/ckeditor/"]').each(function() {
$(this).remove();
});
//load CKeditor again
contentEditor.loadjscssfile('/includes/contentEditor/ckeditor/ckeditor.js', 'js');
contentEditor.loadjscssfile('/includes/contentEditor/ckeditor/adapters/jquery.js', 'js');
我的方法加載編輯器,但一些插件後重裝不起作用。謝謝你的幫助!
ajax.html和div_replace.html示例顯示瞭如何創建和銷燬CKEditor實例而不需要「完全重新初始化」,因此您應該檢查如何使用CKEditor修復該錯誤而不是添加奇怪的解決方法。 – AlfonsoML 2011-04-14 19:59:40