所以我得到了一个带有textarea
插件的CKEditor
,但我只是希望它干净,没有任何东西。没有工具栏,没有状态或任何栏。这很简单但我无法在文档或网络上找到它!
我的CKEditor
以:
$('#texto').ckeditor({skin:'office2003'});
答案 0 :(得分:16)
实际上,正确的方法是删除呈现这些功能的插件:
config.removePlugins = 'toolbar,elementspath,resize';
使用新的CKEditor 4,您甚至可以在没有这些插件的情况下构建自己的编辑器,从而缩小编辑器代码:http://ckeditor.com/builder
答案 1 :(得分:4)
您可以编辑放置源文件的目录中的config.js
文件,以指定自定义工具栏。
CKEDITOR.editorConfig = function( config )
{
config.toolbar = 'Custom'; //makes all editors use this toolbar
config.toolbar_Custom = []; //define an empty array or whatever buttons you want.
};
有关详细信息,请参阅developer's guide。
答案 2 :(得分:2)
继续@wsanwille回答也隐藏了工具栏。
CKEDITOR.replace('description', {
toolbar: 'Custom', //makes all editors use this toolbar
toolbarStartupExpanded : false,
toolbarCanCollapse : false,
toolbar_Custom: [] //define an empty array or whatever buttons you want.
});
答案 3 :(得分:0)
使用CKE 4或更高版本,您可以使用以下行在本地配置您的CKE:
<script type="text/javascript">
$(document).ready(function()
{
CKEDITOR.replace('textArea-id');
CKEDITOR.config.toolbar = [['Bold','Italic','Underline']] ;
CKEDITOR.config.uiColor = '#fff';
});
希望这有帮助。
答案 4 :(得分:0)
那样的?空白方块是ckeditor。
] 1