gpt4 book ai didi

ckeditor - 如何在 CKEditor 内联中隐藏工具栏

转载 作者:行者123 更新时间:2023-12-02 05:02:35 30 4
gpt4 key购买 nike

我有一个应用程序需要内联 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();
}

问题是我不知道如何将这两者结合在一起 :) 感谢您提供任何提示。谢谢。

最佳答案

我找到了另一个似乎可以解决我的问题的链接:Can I use CKEditor without a toolbar?该脚本似乎工作正常,但我仍然不确定它是否是正确的方法:

CKEDITOR.disableAutoInline = true;
var editor = CKEDITOR.inline('editable', {
removePlugins: 'toolbar',
allowedContent: 'p h1 h2 strong em; a[!href]; img[!src,width,height]'
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 - 如何在 CKEditor 内联中隐藏工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16825181/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com