您的位置:首页 > Web前端 > JavaScript

CKEditor之配置文件config.js

2015-01-16 11:10 531 查看
/*

Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.

For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.editorConfig = function( config ){

// 界面语言,默认为 'en'

config.language = 'zh-cn';

// 编辑器样式,有三种:'kama'(默认)、'office2003'、'v2'

config.skin = 'kama';

// 背景颜色

config.uiColor = '#C4D8ED';

// 工具栏(基础'Basic'、全能'Full'、自定义)plugins/toolbar/plugin.js

config.toolbar = 'Basic';

config.toolbar_Basic = [

//['Source','-','Bold','Italic','RemoveFormat','Cut','Copy','Paste','PasteText','PasteFromWord'], ['Maximize']

['Source','-','Bold','Italic','RemoveFormat','Cut','Copy','Paste','PasteText','PasteFromWord'],

['Image','Table'],['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],

['Format','FontSize'],['Maximize']

];

config.height = 300; //高度

config.toolbar = 'Full';

//这将配合:

config.toolbar_Full = [

['Source','-','Preview','Templates'],

['Cut','Copy','Paste','PasteText','PasteFromWord'],

['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],['TextColor','BGColor'],

['-','Outdent','Indent','Blockquote','-','Subscript','Superscript','NumberedList','BulletedList',],

['Link','Unlink'],

'/',

['Bold','Italic','Underline','Strike','-',],['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],

['Styles','Format','Font','FontSize'],

['Image','Flash','Table','HorizontalRule','SpecialChar','PageBreak'], ['Maximize']

];

//config.filebrowserImageBrowseUrl = '/FileManage.php?action=Show&Return_Type=2&getajax=true';

//config.filebrowserFlashBrowseUrl = '/FileManage.php?action=Show&Return_Type=2&getajax=true';

config.filebrowserUploadUrl = './upload_imgfile.php';

config.enterMode = CKEDITOR.ENTER_BR;

};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: