该问题已被锁定!
6
关注
3928
浏览

ckeditor如何调用全编辑器?

AI智能回复搜索中,请稍后...

查看全部 1 个回答

苏逸融 核心会员 用户来自于: 美国
2015-04-01 16:28
ckeditor有个config.js的配置文件 你可以修改config.toolbar_Full这个配置,加上你想要的tool,我发现可以添加表情,还有config.forcePasteAsPlainText = true; 把这句的true改成false,你可以粘贴图片。Google相关教程多的是。  
CKEDITOR.editorConfig = function( config ) {
	// Define changes to default configuration here.
	// For complete reference see:
	// http://docs.ckeditor.com/#!/api/CKEDITOR.config

	config.toolbar = 'Full';

	config.toolbar_Full = [
		 ['FontSize','Cleanup','Bold','Italic','NumberedList','BulletedList', 'Blockquote', 'pbckcode', 'WecenterImage', 'WecenterAttach', 'WecenterLink', 'WecenterVideo', 'Maximize', 'RemoveFormat']
	]

	config.extraPlugins = 'pbckcode,bbcode,sourcearea,wecenterattach,wecenterimage,wecenterlink,wecentervideo,blockquote,font';

	config.resize_enabled = false;

	config.language = 'zh-cn';

	config.skin = 'bootstrapck';

	config.height = 250;

	// 过滤粘贴内容
	config.forcePasteAsPlainText = true;

	config.magicline_color = '#ccc';

	config.magicline_everywhere = true;

	config.fontSize_sizes = '16px;18px';

	// The default plugins included in the basic setup define some buttons that
	// are not needed in a basic editor. They are removed here.
	config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript';

	// Dialog windows are also simplified.
	config.removeDialogTabs = 'link:advanced';

	config.removePlugins = 'enterkey,elementspath,tabletools,contextmenu';

};

关于作者

bbg 注册会员

这家伙很懒,还没有设置简介

问题动态

发布时间
2015-04-01 13:47
更新时间
2015-04-01 16:28
关注人数
6 人关注

相关问题

游戏大学首页调用的模板在2.1中代码怎么写呀?
如何设置提问只能归属话题而没有分类?
如何在动态显示答案?
手机浏览如何直接进入电脑版?
如何在微信中调用显示最新问题、我的关注等。
wecenter的编辑器可以更换吗。太难用了
wecenter3.0.2添加百度ueditor编辑器的方法。ueditor和markdown共存模式
已有BBS的网站,如何使用问答呢?
超长文章字数不够,如何修改限制
如何取消自动跳转到手机版

推荐内容

官网的一个关于话题中精华的bug
3.19回复文章的时候编辑器不能插入图片?
反馈一个3.0bug(官网):文章可以反复收藏没有提示
哪个版本支持 Markdown 编辑器?
手机版如果也有编辑器就好啦,现在只有插入图片一项功能。
插入代码无法缩进
WeCenter3.6.0 可以切换回百度富文本编辑器吗?
目前编辑器使用的问题和回复问题,编辑回复展现方式的一点小小建议
建议把预览模式放在编辑器里,可以加个勾选
正在开发基于百度UEditor的富文本插件,遇到问题,请多多指教