从 CKEditor 中删除状态栏

发布于 2024-08-16 09:15:13 字数 130 浏览 7 评论 0原文

CKEditor 网站有些欠缺;你能告诉我如何从 CKEditor 中删除状态栏('body ul li ...')吗?

编辑器底部有一个 HTML 列表 - body p ul li - 表示如何生成键入的文本,我想删除此列表。

The CKEditor website is somewhat lacking; can you tell me how to remove the status bar ('body ul li ...') from CKEditor?

There is a list of HTML at the bottom of the editor - body p ul li - representing how the typed text will be generated and I want to remove this list.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

箜明 2024-08-23 09:15:13

答案在这里: http://cksource.com/forums/viewtopic .php?p=42512&sid=5e2f0367542c8dc9468e6addb20d8d70#p42512

config.removePlugins = 'elementspath';
config.resize_enabled = false;

Answer is here: http://cksource.com/forums/viewtopic.php?p=42512&sid=5e2f0367542c8dc9468e6addb20d8d70#p42512

config.removePlugins = 'elementspath';
config.resize_enabled = false;
£噩梦荏苒 2024-08-23 09:15:13

像这样,例如:

CKEDITOR.appendTo('container', {
    removePlugins: 'elementspath' 
});

正如下面 Jason 提到的,您可能还想使用以下方法完全删除该栏:

CKEDITOR.appendTo('container', {
    removePlugins: 'elementspath',
    resize_enabled: false
});

Like this, for example:

CKEDITOR.appendTo('container', {
    removePlugins: 'elementspath' 
});

As mentioned by Jason below, you might also want to remove the bar completely using:

CKEDITOR.appendTo('container', {
    removePlugins: 'elementspath',
    resize_enabled: false
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文