gpt4 book ai didi

javascript - 我可以在没有工具栏的情况下使用 CKEditor 吗?

转载 作者:行者123 更新时间:2023-12-03 02:06:38 25 4
gpt4 key购买 nike

(可能重复:CKEditor - No toolbars)

我想创建一个没有工具栏的 CKEditor 实例。我尝试定义一个空工具栏以在实例的配置中使用

oConfigName.toolbar = 'Custom';
oConfigName.toolbar_Custom = [];

但是我的实例得到了一个小的空工具栏,而不是没有工具栏。

我将 inline editing 与 CKEditor4 一起使用。

最佳答案

哇:)这是我们在实现工具栏时没有想到的。但我刚刚检查过您可以删除工具栏插件,因为任何其他插件都不需要它。

所以build your own没有工具栏的 CKEditor 软件包或使用 removePlugins 配置 - 例如:

var editor = CKEDITOR.inline( 'editable', {
removePlugins: 'toolbar'
} );

更新:在 CKEditor 4.1 中 Advanced Content Filter被介绍了。在其 automatic mode它由加载到工具栏的按钮配置。如果没有 toolbar 插件 ACF 则无法配置,因此需要自己完成此操作:

var editor = CKEDITOR.inline( 'editable', {
removePlugins: 'toolbar',
allowedContent: 'p h1 h2 strong em; a[!href]; img[!src,width,height];'
} );

关于javascript - 我可以在没有工具栏的情况下使用 CKEditor 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13611386/

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