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

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 人关注

相关问题

如何将wecenter上传到阿里云ECS服务器?
如何修改用户V认证图片呢?在哪文件里面?
Markdown编辑器 在发起问题文章时看不到 谷歌和ie都看不到
DEDE怎么调用WC的文章问题??
编辑器,有没有能像QQ一样直接截图,并自动上传的呢?
为什么官方的评论是编辑器,而我的3.2.1的评论只有输入框
在本地电脑调试好后,如何搬到服务器上?
自定义URL如何配置?有教程不?
编辑器不能将图片插入到对应内容中间,每次插入都在最后
如何关闭程序中的邮件系统。

推荐内容

给不了解 markdown 或刚准备上手的同学
官方这个编辑器是自己开发的?还是在哪里下载的?
编辑器的问题 官方是什么态度?
beta2版本的编辑器导致带有格式的行如标题行前后的空行都不显示?
编辑器 语法教学篇
ckeditor官网的demo都支持直接粘贴剪切板图片?为什么wecenter的不行?
编辑器什么时候能重新支持下markdown?
视频无法在朋友圈里播放
手机版如果也有编辑器就好啦,现在只有插入图片一项功能。
为什么我自己搭建的wecenter,上传了一个图片,图片只有一个删除按钮,没有插入按钮