我需要像一个简单的那样使用 CKEDITOR ( http://ckeditor.com/ )
<input type="text" />
我修改了 config.js 文件,添加了以下设置:
config.toolbar = 'SimpleVersion';
config.toolbar_SimpleVersion =
[
['Cut','Copy','Paste','PasteText'],
];
然后,在主页面:
editor = CKEDITOR.replace("mydiv", { toolbar : 'SimpleVersion' });
editor.config.height = 50;
editor.config.removePlugins = 'resize';
editor.config.resize_enabled = false;
它可以工作,但如果可能的话,我需要删除写有“body”的底部,并在按下 Return 按钮时禁止新行。
我认为对于最后一个,可以使用 JQuery 触发器。