Jquery CKEditor WYSIWYG 编辑器向我显示所有按钮
我正在关注 此处 中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 config.js 中,您可以定义工具栏,或修改默认工具栏。它看起来像这样:
请参阅 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:
see http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar for more information
检查编辑器的 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