Jquery CKEditor WYSIWYG 编辑器向我显示所有按钮

发布于 2024-11-01 21:36:11 字数 506 浏览 2 评论 0原文

我正在关注 此处 中的 ckeditor 示例,我在其中添加脚本

<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="/ckeditor/adapters/jquery.js"></script>

并调用 .ckeditor() 在适当的类 .editor

$( 'textarea.editor' ).ckeditor();

这向我展示了一个完整的编辑器,其中包含所有按钮。

如何自定义要显示的按钮?

I'm following the ckeditor example from here where I add the script

<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="/ckeditor/adapters/jquery.js"></script>

and call .ckeditor() on the appropriate class .editor

$( 'textarea.editor' ).ckeditor();

This shows me a full editor with every button under the sun.

How can I customize which buttons I want to appear?

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

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

发布评论

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

评论(2

若言繁花未落 2024-11-08 21:36:11

在 config.js 中,您可以定义工具栏,或修改默认工具栏。它看起来像这样:

config.toolbar_Basic = [
    ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', '-','About']
];

请参阅 http://docs.cksource.com/CKEditor_3.x/Developers_Guide /工具栏了解更多信息

in config.js you can define your toolbars, or modify the default toolbars. It looks like this:

config.toolbar_Basic = [
    ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', '-','About']
];

see http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar for more information

や莫失莫忘 2024-11-08 21:36:11

检查编辑器的 config.js 文件

您需要制作要显示的自定义工具栏组。

检查此处

http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Setting_Configurations

check config.js file of editor

You need to make custom group of toolbars which u want to show.

check here

http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Setting_Configurations

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