﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-Jerome Kwok〖旧日的足迹〗-文章分类-CKEditor</title><link>http://www.blogjava.net/JeromeKwok/category/54286.html</link><description>仁者不忧，知者不惑，勇者不惧</description><language>zh-cn</language><lastBuildDate>Thu, 10 Apr 2014 09:13:39 GMT</lastBuildDate><pubDate>Thu, 10 Apr 2014 09:13:39 GMT</pubDate><ttl>60</ttl><item><title>CKeditor配置使用 </title><link>http://www.blogjava.net/JeromeKwok/articles/ckEditor.html</link><dc:creator>Jerome Kwok</dc:creator><author>Jerome Kwok</author><pubDate>Wed, 09 Apr 2014 12:37:00 GMT</pubDate><guid>http://www.blogjava.net/JeromeKwok/articles/ckEditor.html</guid><description><![CDATA[<div class="postTitle"><a id="viewpost1_TitleUrl" class="postTitle2" href="http://www.blogjava.net/wangxinsh55/archive/2010/01/31/311396.html"><font color="#4371a6">CKeditor 配置使用</font></a> </div><div><div id="blogtext_fks_083070085081083074081082087095085086083064081081081065" content="" c07="" g_p_center="" g_c_pdin=""><div><p><font color="#999999">ckeditor 的官方网站是 </font><a href="http://ckeditor.com/"><font color="#999999">http://ckeditor.com/</font></a><font color="#999999"> <br />，我当前使用的版本是v3.0.1。</font> <br /><font color="#0000ff"><strong>一、使用方法：</strong></font> <br /><font color="#993300">1、在页面&lt;head&gt;中引入ckeditor核心文件ckeditor.js</font> <br /><font color="#999999">&lt;script type="text/javas<wbr>cript" src="ckeditor/ckeditor.js"&gt;&lt;/script&gt; <br /></font><font color="#993300">2、在使用编辑器的地方插入HTML控件&lt;textarea&gt;</font> <br /><font color="#999999">&lt;textarea id="TextArea1" cols="20" rows="2" class="ckeditor"&gt;&lt;/textarea&gt; </font></p><p><font color="#999999">如果是ASP.NET环境，也可用服务器端控件&lt;TextBox&gt; </font></p><p><font color="#999999">&lt;asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="ckeditor"&gt;&lt;/asp:TextBox&gt; </font></p><p><font color="#999999">注意在控件中加上 class="ckeditor" 。 </font></p><p><font color="#993300">3、将相应的控件替换成编辑器代码</font> </p><p><font color="#999999">&lt;script type="text/javas<wbr>cript"&gt;<br />&nbsp;&nbsp;&nbsp; CKEDITOR.replace('TextArea1');<br />//如果是在ASP.NET环境下用的服务器端控件&lt;TextBox&gt;<br />&nbsp;&nbsp;&nbsp; CKEDITOR.replace('tbContent');<br />//如果&lt;TextBox&gt;控件在母版页中，要这样写<br />&nbsp;&nbsp;&nbsp; CKEDITOR.replace('&lt;%=tbContent.ClientID.Replace("_","$") <br />%&gt;');<br />&lt;/script&gt;</font> </p><p><font color="#993300">4、配置编辑器</font> </p><p><font color="#999999">ckeditor的配置都集中在 ckeditor/config.js 文件中，下面是一些常用的配置参数： <br /></font><font color="#999999">// 界面语言，默认为 'en' </font></p><p><font color="#999999">&nbsp;config.language = 'zh-cn'; <br />/</font><font color="#999999">/ 设置宽高 </font></p><p><font color="#999999">config.width = 400; </font></p><p><font color="#999999">config.height = 400; <br /></font><font color="#999999">// 编辑器样式，有三种：'kama'（默认）、'office2003'、'v2' </font></p><p><font color="#999999">config.skin = 'v2'; <br />/</font><font color="#999999">/ 背景颜色 </font></p><p><font color="#999999">config.uiColor = '#FFF'; </font></p><p><font color="#999999">// 工具栏（基础'Basic'、全能'Full'、自定义）plugins/toolbar/plugin.js <br /></font><font color="#999999">config.toolbar = 'Basic'; </font></p><p><font color="#999999">config.toolbar = 'Full'; </font></p><p><font color="#999999">这将配合：<br />&nbsp;&nbsp;&nbsp; config.toolbar_Full = [<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Source','-','Save','NewPage','Preview','-','Templates'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', <br />'Scayt'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', <br />'ImageButton', 'HiddenField'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '/',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Link','Unlink','Anchor'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />'/',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ['Styles','Format','Font','FontSize'],<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['TextColor','BGColor']<br />&nbsp;&nbsp;&nbsp; ]; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //工具栏是否可以被收缩<br />&nbsp;&nbsp;&nbsp; config.toolbarCanCollapse = true; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //工具栏的位置<br />&nbsp;&nbsp;&nbsp; config.toolbarLocation = <br />'top';//可选：bottom </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //工具栏默认是否展开<br />&nbsp;&nbsp;&nbsp; config.toolbarStartupExpanded = <br />true; </font></p><br /><p><font color="#999999">// 取消 &#8220;拖拽以改变尺寸&#8221;功能 plugins/resize/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.resize_enabled = false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //改变大小的最大高度 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; config.resize_maxHeight = 3000; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //改变大小的最大宽度<br />&nbsp;&nbsp;&nbsp; config.resize_maxWidth = 3000; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //改变大小的最小高度<br />&nbsp;&nbsp;&nbsp; config.resize_minHeight = 250; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //改变大小的最小宽度<br />&nbsp;&nbsp;&nbsp; config.resize_minWidth = <br />750;<br />// 当提交包含有此编辑器的表单时，是否自动更新元素内的数据<br />&nbsp;&nbsp;&nbsp; config.autoUpdateElement = true; <br /></font></p><br /><p><font color="#999999">// 设置是使用绝对目录还是相对目录，为空为相对目录<br />&nbsp;&nbsp;&nbsp; config.baseHref = '' <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; // 编辑器的z-index值<br />&nbsp;&nbsp;&nbsp; config.baseFloatZIndex = <br />10000; </font></p><br /><p><font color="#999999">//设置快捷键<br />&nbsp;&nbsp;&nbsp; config.keystrokes = [<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ <br />CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ],&nbsp; //获取焦点<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.ALT <br />+ 122 /*F11*/, 'elementsPathFocus' ],&nbsp; //元素焦点 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ],&nbsp; <br />//文本菜单 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ],&nbsp; <br />//撤销<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ],&nbsp; //重做<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ <br />CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ],&nbsp; // </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.CTRL + 76 /*L*/, 'link' ],&nbsp; //链接 <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.CTRL + 66 /*B*/, 'bold' ],&nbsp; <br />//粗体<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.CTRL + 73 /*I*/, 'italic' ],&nbsp; //斜体<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ <br />CKEDITOR.CTRL + 85 /*U*/, 'underline' ],&nbsp; //下划线 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' <br />]<br />&nbsp;&nbsp;&nbsp; ] </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //设置快捷键 可能与浏览器快捷键冲突 <br />plugins/keystrokes/plugin.js.<br />&nbsp;&nbsp;&nbsp; config.blockedKeystrokes = [<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />CKEDITOR.CTRL + 66 /*B*/,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CKEDITOR.CTRL + 73 /*I*/,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />CKEDITOR.CTRL + 85 /*U*/<br />&nbsp;&nbsp;&nbsp; ] </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //设置编辑内元素的背景色的取值 <br />plugins/colorbutton/plugin.js.<br />&nbsp;&nbsp;&nbsp; config.colorButton_backStyle = <br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element : 'span',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles : { 'background-color' : <br />'#(color)' }<br />&nbsp;&nbsp;&nbsp; } </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //设置前景色的取值 plugins/colorbutton/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.colorButton_colors =&nbsp; <br />'000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520, <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE, <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5, <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF&#8217; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否在选择颜色时显示&#8220;其它颜色&#8221;选项 <br />plugins/colorbutton/plugin.js<br />&nbsp;&nbsp;&nbsp; config.colorButton_enableMore = false <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //区块的前景色默认值设置 plugins/colorbutton/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.colorButton_foreStyle = {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element : 'span',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles <br />: { 'color' : '#(color)' }<br />&nbsp;&nbsp;&nbsp; }; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //所需要添加的CSS文件 在此添加 可使用相对路径和网站的绝对路径<br />&nbsp;&nbsp;&nbsp; <br />config.contentsCss = './contents.css'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //文字方向<br />&nbsp;&nbsp;&nbsp; config.contentsLangDirection = 'rtl'; <br />//从左到右 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //CKeditor的配置文件 若不想配置 留空即可<br />&nbsp;&nbsp;&nbsp; CKEDITOR.replace( <br />'myfiled', { customConfig : './config.js' } ); </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //界面编辑框的背景色 plugins/dialog/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.dialog_backgroundCoverColor = '#fffefd'; //可设置参考<br />&nbsp;&nbsp;&nbsp; <br />config.dialog_backgroundCoverColor = 'white' //默认 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //背景的不透明度 数值应该在：0.0～1.0 之间 <br />plugins/dialog/plugin.js<br />&nbsp;&nbsp;&nbsp; config.dialog_backgroundCoverOpacity = 0.5 <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //移动或者改变元素时 边框的吸附距离 单位：像素 <br />plugins/dialog/plugin.js<br />&nbsp;&nbsp;&nbsp; config.dialog_magnetDistance = 20; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否拒绝本地拼写检查和提示 默认为拒绝 目前仅firefox和safari支持 <br />plugins/wysiwygarea/plugin.js.<br />&nbsp;&nbsp;&nbsp; config.disableNativeSpellChecker = true <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //进行表格编辑功能 如：添加行或列 目前仅firefox支持 <br />plugins/wysiwygarea/plugin.js<br />&nbsp;&nbsp;&nbsp; config.disableNativeTableHandles = true; <br />//默认为不开启 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否开启 图片和表格 的改变大小的功能 config.disableObjectResizing = <br />true;<br />&nbsp;&nbsp;&nbsp; config.disableObjectResizing = false //默认为开启 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //设置HTML文档类型<br />&nbsp;&nbsp;&nbsp; config.docType = '&lt;!DOCTYPE <br />html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "</font><a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd%22%27"><font color="#999999">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd%22'</font></a><font color="#999999"> ; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否对编辑区域进行渲染 plugins/editingblock/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.editingBlock = true; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //编辑器中回车产生的标签<br />&nbsp;&nbsp;&nbsp; config.enterMode = <br />CKEDITOR.ENTER_P; //可选：CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否使用HTML实体进行输出 plugins/entities/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.entities = true; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //定义更多的实体 plugins/entities/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.entities_additional = '#39'; //其中#代替了&amp; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否转换一些难以显示的字符为相应的HTML字符 <br />plugins/entities/plugin.js<br />&nbsp;&nbsp;&nbsp; config.entities_greek = true; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否转换一些拉丁字符为HTML plugins/entities/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.entities_latin = true; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否转换一些特殊字符为ASCII字符 如"This is Chinese: 汉语."转换为"This <br />is Chinese: 汉语." plugins/entities/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.entities_processNumerical = false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //添加新组件<br />&nbsp;&nbsp;&nbsp; config.extraPlugins = 'myplugin'; <br />//非默认 仅示例 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //使用搜索时的高亮色 plugins/find/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.find_highlight = {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element : 'span',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles : { <br />'background-color' : '#ff0', 'color' : '#00f' }<br />&nbsp;&nbsp;&nbsp; }; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //默认的字体名 plugins/font/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.font_defaultLabel = 'Arial'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //字体编辑时的字符集 可以添加常用的中文字符：宋体、楷体、黑体等 <br />plugins/font/plugin.js<br />&nbsp;&nbsp;&nbsp; config.font_names = 'Arial;Times New <br />Roman;Verdana'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //文字的默认式样 plugins/font/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.font_style = {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element&nbsp;&nbsp; : 'span',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles&nbsp;&nbsp; : { <br />'font-family' : '#(family)' },<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; overrides : [ { element : 'font', <br />attributes : { 'face' : null } } ]<br />&nbsp;&nbsp;&nbsp; }; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //字体默认大小 plugins/font/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.fontSize_defaultLabel = '12px'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //字体编辑时可选的字体大小 plugins/font/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.fontSize_sizes <br />='8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px' <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //设置字体大小时 使用的式样 plugins/font/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.fontSize_style = {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element&nbsp;&nbsp; : 'span',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles&nbsp;&nbsp; : { <br />'font-size' : '#(size)' },<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; overrides : [ { element : 'font', <br />attributes : { 'size' : null } } ]<br />&nbsp;&nbsp;&nbsp; }; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否强制复制来的内容去除格式 plugins/pastetext/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.forcePasteAsPlainText =false //不去除 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; <br />//是否强制用&#8220;&amp;&#8221;来代替&#8220;&amp;amp;&#8221;plugins/htmldataprocessor/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.forceSimpleAmpersand = false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对address标签进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_address = { element : 'address', attributes : { class : <br />'styledAddress' } }; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对DIV标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_div = { element : 'div', attributes : { class : 'normalDiv' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对H1标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对H2标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对H3标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对H4标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对H5标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对H6标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对P标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_p = { element : 'p', attributes : { class : 'normalPara' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对PRE标签自动进行格式化 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_pre = { element : 'pre', attributes : { class : 'co<wbr>de' } }; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //用分号分隔的标签名字 在工具栏上显示 plugins/format/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; <br />//是否使用完整的html编辑模式如使用，其源码将包含：&lt;html&gt;&lt;body&gt;&lt;/body&gt;&lt;/html&gt;等标签<br />&nbsp;&nbsp;&nbsp; <br />config.fullPage = false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否忽略段落中的空字符 若不忽略 则字符将以&#8220;&#8221;表示 <br />plugins/wysiwygarea/plugin.js<br />&nbsp;&nbsp;&nbsp; config.ignoreEmptyParagraph = true; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //在清除图片属性框中的链接属性时 是否同时清除两边的&lt;a&gt;标签 <br />plugins/image/plugin.js<br />&nbsp;&nbsp;&nbsp; config.image_removeLinkByEmptyURL = true; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //一组用逗号分隔的标签名称，显示在左下角的层次嵌套中 <br />plugins/menu/plugin.js.<br />&nbsp;&nbsp;&nbsp; config.menu_groups <br />='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea'; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //显示子菜单时的延迟，单位：ms plugins/menu/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.menu_subMenuDelay = 400; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //当执行&#8220;新建&#8221;命令时，编辑器中的内容 plugins/newpage/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.newpage_html = ''; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //当从word里复制文字进来时，是否进行文字的格式化去除 <br />plugins/pastefromword/plugin.js<br />&nbsp;&nbsp;&nbsp; config.pasteFromWordIgnoreFontFace = <br />true; //默认为忽略格式 </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否使用&lt;h1&gt;&lt;h2&gt;等标签修饰或者代替从word文档中粘贴过来的内容 <br />plugins/pastefromword/plugin.js<br />&nbsp;&nbsp;&nbsp; config.pasteFromWordKeepsStructure = <br />false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //从word中粘贴内容时是否移除格式 <br />plugins/pastefromword/plugin.js<br />&nbsp;&nbsp;&nbsp; config.pasteFromWordRemoveStyle = false; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对应后台语言的类型来对输出的HTML内容进行格式化，默认为空<br />&nbsp;&nbsp;&nbsp; <br />config.protectedSource.push( /&lt;"?["s"S]*?"?&gt;/g );&nbsp;&nbsp; // PHP <br />Co<wbr>de<br />&nbsp;&nbsp;&nbsp; config.protectedSource.push( //g );&nbsp;&nbsp; // ASP Co<wbr>de<br />&nbsp;&nbsp;&nbsp; <br />config.protectedSource.push( <br />/(]+&gt;["s|"S]*?&lt;"/asp:[^"&gt;]+&gt;)|(]+"/&gt;)/gi );&nbsp;&nbsp; // ASP.Net <br />Co<wbr>de </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //当输入：shift+Enter时插入的标签<br />&nbsp;&nbsp;&nbsp; config.shiftEnterMode <br />= CKEDITOR.ENTER_P;&nbsp; //可选：CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //可选的表情替代字符 plugins/smiley/plugin.js.<br />&nbsp;&nbsp;&nbsp; <br />config.smiley_descriptions = [<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ':)', ':(', ';)', ':D', ':/', <br />':P',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '', '', '', '', '', '',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '', ';(', '', '', '', <br />'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '', ':kiss', '' ]; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //对应的表情图片 plugins/smiley/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.smiley_images = [<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />'broken_heart.gif','kiss.gif','envelope.gif']; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //表情的地址 plugins/smiley/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.smiley_path = 'plugins/smiley/images/'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //页面载入时，编辑框是否立即获得焦点 plugins/editingblock/plugin.js <br />plugins/editingblock/plugin.js.<br />&nbsp;&nbsp;&nbsp; config.startupFocus = false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //载入时，以何种方式编辑 源码和所见即所得 "source"和"wysiwyg" <br />plugins/editingblock/plugin.js.<br />&nbsp;&nbsp;&nbsp; config.startupMode ='wysiwyg'; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //载入时，是否显示框体的边框 plugins/showblocks/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.startupOutlineBlocks = false; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //是否载入样式文件 plugins/stylescombo/plugin.js.<br />&nbsp;&nbsp;&nbsp; <br />config.stylesCombo_stylesSet = 'default';<br />&nbsp;&nbsp;&nbsp; //以下为可选<br />&nbsp;&nbsp;&nbsp; <br />config.stylesCombo_stylesSet = 'mystyles';<br />&nbsp;&nbsp;&nbsp; config.stylesCombo_stylesSet = <br />'mystyles:/editorstyles/styles.js';<br />&nbsp;&nbsp;&nbsp; config.stylesCombo_stylesSet = <br />'mystyles:http://www.example.com/editorstyles/styles.js'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //起始的索引值<br />&nbsp;&nbsp;&nbsp; config.tabIndex = 0; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //当用户键入TAB时，编辑器走过的空格数，(&amp;nbsp;) 当值为0时，焦点将移出编辑框 <br />plugins/tab/plugin.js<br />&nbsp;&nbsp;&nbsp; config.tabSpaces = 0; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //默认使用的模板 plugins/templates/plugin.js.<br />&nbsp;&nbsp;&nbsp; <br />config.templates = 'default'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //用逗号分隔的模板文件plugins/templates/plugin.js.<br />&nbsp;&nbsp;&nbsp; <br />config.templates_files = [ 'plugins/templates/templates/default.js' ] <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //当使用模板时，&#8220;编辑内容将被替换&#8221;框是否选中 <br />plugins/templates/plugin.js<br />&nbsp;&nbsp;&nbsp; config.templates_replaceContent = true; <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //主题<br />&nbsp;&nbsp;&nbsp; config.theme = 'default'; </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; //撤销的记录步数 plugins/undo/plugin.js<br />&nbsp;&nbsp;&nbsp; <br />config.undoStackSize =20; </font></p><br /><p><font color="#999999">// 在 CKEditor 中集成 CKFinder，注意 ckfinder <br />的路径选择要正确。<br />//CKFinder.SetupCKEditor(null, '/ckfinder/'); </font></p><br /><p><font color="#0000ff"><strong>二、 一些使用技巧</strong></font> </p><br /><p><font color="#993300">1、在页面中即时设置编辑器</font> </p><br /><p><font color="#999999">&lt;script type="text/javas<wbr>cript"&gt;<br />// <br />示例1：设置工具栏为基本工具栏，高度为70<br />&nbsp;&nbsp;&nbsp; <br />CKEDITOR.replace('&lt;%=tbLink.ClientID.Replace("_","$") %&gt;',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { <br />toolbar:'Basic', height:70 });<br />//示例2：工具栏为自定义类型<br />&nbsp;&nbsp;&nbsp; CKEDITOR.replace( <br />'editor1',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; toolbar :<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [<br />//加粗&nbsp;&nbsp;&nbsp;&nbsp; <br />斜体，&nbsp;&nbsp;&nbsp;&nbsp; 下划线&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 穿过线&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 下标字&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 上标字<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Bold','Italic','Underline','Strike','Subscript','Superscript'],<br />// <br />数字列表&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 实体列表&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 减小缩进&nbsp;&nbsp;&nbsp; 增大缩进<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['NumberedList','BulletedList','-','Outdent','Indent'],<br />//左对齐&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />居中对齐&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 右对齐&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 两端对齐<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],<br />//超链接&nbsp; 取消超链接 <br />锚点<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ['Link','Unlink','Anchor'],<br />//图片&nbsp;&nbsp;&nbsp; flash&nbsp;&nbsp;&nbsp; 表格&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />水平线&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 表情&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 特殊字符&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 分页符<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],<br />'/',<br />// <br />样式&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 格式&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 字体&nbsp;&nbsp;&nbsp; 字体大小<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['Styles','Format','Font','FontSize'],<br />//文本颜色&nbsp;&nbsp;&nbsp;&nbsp; 背景颜色<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />['TextColor','BGColor'],<br />//全屏&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 显示区块<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ['Maximize', <br />'ShowBlocks','-']<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp; );<br />&lt;/script&gt; <br /></font></p><br /><p><font color="#0000ff"><strong>三、精简ckeditor</strong></font> </p><br /><p>&nbsp;&nbsp; <font color="#999999"> 在部署到Web服务器上时，下列文件夹和文件都可以删除： </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; /_samples ：示例文件夹； </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; /_source ：未压缩源程序； </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; /lang文件夹下除 zh-cn.js、en.js 以外的文件（也可以根据需要保留其他语言文件）； <br /></font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; 根目录下的 <br />changes.html(更新列表)，install.html(安装指向)，license.html(使用许可)； </font></p><br /><p><font color="#999999">&nbsp;&nbsp;&nbsp; /skins 目录下不需要的皮肤，一般用V2(简单，朴素) <br />，如果只保留V2则必须在config.js中指定皮肤。</font></p></div></div></div> <img src ="http://www.blogjava.net/JeromeKwok/aggbug/412168.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/JeromeKwok/" target="_blank">Jerome Kwok</a> 2014-04-09 20:37 <a href="http://www.blogjava.net/JeromeKwok/articles/ckEditor.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>