2
我有一個需要內嵌CKEditor但沒有工具欄的應用程序。對於內嵌CKEditor的一部分,我有:如何在CKEditor中嵌入工具欄
CKEDITOR.disableAutoInline = true;
var editor = CKEDITOR.inline('editable', {on: {
instanceReady: function() {periodic();}
}});
var periodic = (function() {
var data, oldData;
return function() {
if ((data = editor.getData()) !== oldData) {
oldData = data;
$.post("update.php", {txt:data});
}
setTimeout(periodic, 1000);
};
})();
然後在工具欄的隱藏部分,我發現這個:CKEditor 4 Inline: How to hide toolbar on demand?
//Whenever CKEditor loses focus, We will hide the corresponding toolbar DIV.
function hideToolBarDiv(event) {
// Select the correct toolbar DIV and hide it.
//'event.editor.name' returns the name of the DIV receiving focus.
$('#'+event.editor.name+'TBdiv').hide();
}
問題是,我不知道如何將這兩個結合在一起:)我欣賞任何提示。謝謝。
可能重複[我可以使用沒有工具欄的CKEditor?](http://stackoverflow.com/questions/13611386/can-i-use-ckeditor-without-a-toolbar) – Reinmar
我更新了我的答案在http://stackoverflow.com/ questions/13611386/can-i-use-ckeditor-without-a-toolbar解釋高級內容過濾器沒有配置沒有工具欄,因此您需要手動執行此操作。 – Reinmar