??xml version="1.0" encoding="utf-8" standalone="yes"?>久久久在线视频,色黄网站在线观看,99久久精品国产导航http://www.aygfsteel.com/liangcmwn/category/49828.htmlzh-cnThu, 13 Oct 2011 21:36:35 GMTThu, 13 Oct 2011 21:36:35 GMT60ckeditor的详l配|?/title><link>http://www.aygfsteel.com/liangcmwn/articles/361112.html</link><dc:creator>liangcmwn</dc:creator><author>liangcmwn</author><pubDate>Thu, 13 Oct 2011 01:54:00 GMT</pubDate><guid>http://www.aygfsteel.com/liangcmwn/articles/361112.html</guid><wfw:comment>http://www.aygfsteel.com/liangcmwn/comments/361112.html</wfw:comment><comments>http://www.aygfsteel.com/liangcmwn/articles/361112.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/liangcmwn/comments/commentRss/361112.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/liangcmwn/services/trackbacks/361112.html</trackback:ping><description><![CDATA[<div><div> <h1> <span style="font-size: medium;"><span style="color: #800000; font-size: x-small;">CKEditor 3 JavaScript API Documentation</span> :</span> </h1> <p><span style="font-size: medium;"><span style="color: #ff0000; font-size: small;">http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.htm</span> </span> </p> <p><span style="color: #0000ff; font-size: small;"><strong>一、用方法:</strong> </span> </p> <p><span style="color: #993300; font-size: small;">1、在面<head>中引入ckeditor核心文gckeditor.js</span> </p> <p><span style="font-size: small;"><script type="text/javas</span> <span style="font-size: small;">cript" src="ckeditor/ckeditor.js"></script></span> </p> <p><span style="color: #993300; font-size: small;">2、在使用~辑器的地方插入HTML控g<textarea></span> </p> <p><span style="font-size: small;"><textarea id="TextArea1" cols="20" rows="2" class="ckeditor"></textarea></span> </p> <p><span style="font-size: small;">如果是ASP.NET环境Q也可用服务器端控g<TextBox></span> </p> <p><span style="font-size: small;"><asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="ckeditor"></asp:TextBox></span> </p> <p><span style="font-size: small;">注意在控件中加上 class="ckeditor" ?/span> </p> <p><span style="color: #993300; font-size: small;">3、将相应的控件替换成~辑器代?/span> </p> <p><span style="font-size: small;"><script type="text/javas</span> <span style="font-size: small;">cript"><br /> CKEDITOR.replace('TextArea1');<br /> //如果是在ASP.NET环境下用的服务器端控?lt;TextBox><br /> CKEDITOR.replace('tbContent');<br /> //如果<TextBox>控g在母版页中,要这样写<br /> CKEDITOR.replace('<%=tbContent.ClientID.Replace("_","$") %>');<br /> </script></span> </p> <p><span style="color: #993300; font-size: small;">4、配|编辑器</span> </p> <p><span style="font-size: small;">    ckeditor的配|都集中?ckeditor/config.js 文g中,下面是一些常用的配置参数Q?/span> </p> <p><span style="font-size: small;">// 界面语言Q默认ؓ 'en'</span> </p> <p><span style="font-size: small;">    config.language = 'zh-cn';</span> </p> <p><span style="font-size: small;">// 讄宽高</span> </p> <p><span style="font-size: small;">    config.width = 400;</span> </p> <p><span style="font-size: small;">    config.height = 400;</span> </p> <p><span style="font-size: small;">// ~辑器样式,有三U:'kama'Q默认)?office2003'?v2'</span> </p> <p><span style="font-size: small;">    config.skin = 'v2';</span> </p> <p><span style="font-size: small;">// 背景颜色</span> </p> <p><span style="font-size: small;">    config.uiColor = '#FFF';</span> </p> <p><span style="font-size: small;">// 工具栏(基础'Basic'、全?Full'、自定义Qplugins/toolbar/plugin.js</span> </p> <p><span style="font-size: small;">    config.toolbar = 'Basic';</span> </p> <p><span style="font-size: small;">    config.toolbar = 'Full';</span> </p> <p><span style="font-size: small;">    q将配合Q?br /> config.toolbar_Full = [<br /> ['Source','-','Save','NewPage','Preview','-','Templates'],<br /> ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],<br /> ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],<br /> ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],<br /> '/',<br /> ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],<br /> ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],<br /> ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],<br /> ['Link','Unlink','Anchor'],<br /> ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],<br /> '/',<br /> ['Styles','Format','Font','FontSize'],<br /> ['TextColor','BGColor']<br /> ];</span> </p> <p><span style="font-size: small;">    //工具栏是否可以被收羃<br /> config.toolbarCanCollapse = true;</span> </p> <p><span style="font-size: small;">    //工具栏的位置<br /> config.toolbarLocation = 'top';//可选:bottom</span> </p> <p><span style="font-size: small;">    //工具栏默认是否展开<br /> config.toolbarStartupExpanded = true;</span> </p> <p><span style="font-size: small;">// 取消 “拖拽以改变尺?#8221;功能 plugins/resize/plugin.js<br /> config.resize_enabled = false;</span> </p> <p><span style="font-size: small;">    //改变大小的最大高?/span> </p> <p><span style="font-size: small;">    config.resize_maxHeight = 3000;</span> </p> <p><span style="font-size: small;">    //改变大小的最大宽?br /> config.resize_maxWidth = 3000;</span> </p> <p><span style="font-size: small;">    //改变大小的最高?br /> config.resize_minHeight = 250;</span> </p> <p><span style="font-size: small;">    //改变大小的最宽?br /> config.resize_minWidth = 750;<br /> // 当提交包含有此编辑器的表单时Q是否自动更新元素内的数?br /> config.autoUpdateElement = true;</span> </p> <p><span style="font-size: small;">// 讄是用绝对目录还是相对目录,为空为相对目?br /> config.baseHref = ''</span> </p> <p><span style="font-size: small;">    // ~辑器的z-index?br /> config.baseFloatZIndex = 10000;</span> </p> <p><span style="font-size: small;">//讄快捷?br /> config.keystrokes = [<br /> [ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], //获取焦点<br /> [ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], //元素焦点</span> </p> <p><span style="font-size: small;">       [ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], //文本菜单</span> </p> <p><span style="font-size: small;">       [ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], //撤销<br /> [ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], //重做<br /> [ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ], //</span> </p> <p><span style="font-size: small;">        [ CKEDITOR.CTRL + 76 /*L*/, 'link' ], //链接</span> </p> <p><span style="font-size: small;">        [ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], //_体<br /> [ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], //斜体<br /> [ CKEDITOR.CTRL + 85 /*U*/, 'underline' ], //下划U?/span> </p> <p><span style="font-size: small;">        [ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]<br /> ]</span> </p> <p><span style="font-size: small;">    //讄快捷?可能与浏览器快捷键冲H?plugins/keystrokes/plugin.js.<br /> config.blockedKeystrokes = [<br /> CKEDITOR.CTRL + 66 /*B*/,<br /> CKEDITOR.CTRL + 73 /*I*/,<br /> CKEDITOR.CTRL + 85 /*U*/<br /> ]</span> </p> <p><span style="font-size: small;">    //讄~辑内元素的背景色的取?plugins/colorbutton/plugin.js.<br /> config.colorButton_backStyle = {<br /> element : 'span',<br /> styles : { 'background-color' : '#(color)' }<br /> }</span> </p> <p><span style="font-size: small;">    //讄前景色的取?plugins/colorbutton/plugin.js<br /> config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,</span> </p> <p><span style="font-size: small;">        006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,</span> </p> <p><span style="font-size: small;">        A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,</span> </p> <p><span style="font-size: small;">        FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF’</span> </p> <p><span style="font-size: small;">    //是否在选择颜色时显C?#8220;其它颜色”选项 plugins/colorbutton/plugin.js<br /> config.colorButton_enableMore = false</span> </p> <p><span style="font-size: small;">    //区块的前景色默认D|?plugins/colorbutton/plugin.js<br /> config.colorButton_foreStyle = {<br /> element : 'span',<br /> styles : { 'color' : '#(color)' }<br /> };</span> </p> <p><span style="font-size: small;">    //所需要添加的CSS文g 在此d 可用相对\径和|站的绝对\?br /> config.contentsCss = './contents.css';</span> </p> <p><span style="font-size: small;">    //文字方向<br /> config.contentsLangDirection = 'rtl'; //从左到右</span> </p> <p><span style="font-size: small;">    //CKeditor的配|文?若不想配|?留空卛_<br /> CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } );</span> </p> <p><span style="font-size: small;">    //界面~辑框的背景?plugins/dialog/plugin.js<br /> config.dialog_backgroundCoverColor = '#fffefd'; //可设|参?br /> config.dialog_backgroundCoverColor = 'white' //默认</span> </p> <p><span style="font-size: small;">    //背景的不透明?数值应该在Q?.0?.0 之间 plugins/dialog/plugin.js<br /> config.dialog_backgroundCoverOpacity = 0.5</span> </p> <p><span style="font-size: small;">    //Ud或者改变元素时 Ҏ的吸附距?单位Q像?plugins/dialog/plugin.js<br /> config.dialog_magnetDistance = 20;</span> </p> <p><span style="font-size: small;">    //是否拒绝本地拼写查和提示 默认为拒l?目前仅firefox和safari支持 plugins/wysiwygarea/plugin.js.<br /> config.disableNativeSpellChecker = true</span> </p> <p><span style="font-size: small;">    //q行表格~辑功能 如:d行或?目前仅firefox支持 plugins/wysiwygarea/plugin.js<br /> config.disableNativeTableHandles = true; //默认Z开?/span> </p> <p><span style="font-size: small;">    //是否开?囄和表?的改变大的功能 config.disableObjectResizing = true;<br /> config.disableObjectResizing = false //默认为开?/span> </p> <p><span style="font-size: small;">    //讄HTML文档cd<br /> config.docType = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a><span style="color: #555555;">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd%22'</span> </a> ;</span> </p> <p><span style="font-size: small;">    //是否对编辑区域进行渲?plugins/editingblock/plugin.js<br /> config.editingBlock = true;</span> </p> <p><span style="font-size: small;">    //~辑器中回R产生的标{?br /> config.enterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV</span> </p> <p><span style="font-size: small;">    //是否使用HTML实体q行输出 plugins/entities/plugin.js<br /> config.entities = true;</span> </p> <p><span style="font-size: small;">    //定义更多的实?plugins/entities/plugin.js<br /> config.entities_additional = '#39'; //其中#代替?amp;</span> </p> <p><span style="font-size: small;">    //是否转换一些难以显C的字符为相应的HTML字符 plugins/entities/plugin.js<br /> config.entities_greek = true;</span> </p> <p><span style="font-size: small;">    //是否转换一些拉丁字WؓHTML plugins/entities/plugin.js<br /> config.entities_latin = true;</span> </p> <p><span style="font-size: small;">    //是否转换一些特D字WؓASCII字符 ?This is Chinese: 汉语."转换?This is Chinese: 汉语." plugins/entities/plugin.js<br /> config.entities_processNumerical = false;</span> </p> <p><span style="font-size: small;">    //d新组?br /> config.extraPlugins = 'myplugin'; //非默?仅示?/span> </p> <p><span style="font-size: small;">    //使用搜烦时的高亮?plugins/find/plugin.js<br /> config.find_highlight = {<br /> element : 'span',<br /> styles : { 'background-color' : '#ff0', 'color' : '#00f' }<br /> };</span> </p> <p><span style="font-size: small;">    //默认的字体名 plugins/font/plugin.js<br /> config.font_defaultLabel = 'Arial';</span> </p> <p><span style="font-size: small;">    //字体~辑时的字符?可以d常用的中文字W:宋体、楷体、黑体等 plugins/font/plugin.js<br /> config.font_names = 'Arial;Times New Roman;Verdana';</span> </p> <p><span style="font-size: small;">    //文字的默认式?plugins/font/plugin.js<br /> config.font_style = {<br /> element   : 'span',<br /> styles   : { 'font-family' : '#(family)' },<br /> overrides : [ { element : 'font', attributes : { 'face' : null } } ]<br /> };</span> </p> <p><span style="font-size: small;">    //字体默认大小 plugins/font/plugin.js<br /> config.fontSize_defaultLabel = '12px';</span> </p> <p><span style="font-size: small;">    //字体~辑时可选的字体大小 plugins/font/plugin.js<br /> config.fontSize_sizes ='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'</span> </p> <p><span style="font-size: small;">    //讄字体大小?使用的式?plugins/font/plugin.js<br /> config.fontSize_style = {<br /> element   : 'span',<br /> styles   : { 'font-size' : '#(size)' },<br /> overrides : [ { element : 'font', attributes : { 'size' : null } } ]<br /> };</span> </p> <p><span style="font-size: small;">    //是否强制复制来的内容去除格式 plugins/pastetext/plugin.js<br /> config.forcePasteAsPlainText =false //不去?/span> </p> <p><span style="font-size: small;">    //是否强制?#8220;&”来代?#8220;&amp;”plugins/htmldataprocessor/plugin.js<br /> config.forceSimpleAmpersand = false;</span> </p> <p><span style="font-size: small;">    //对address标签q行格式?plugins/format/plugin.js<br /> config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };</span> </p> <p><span style="font-size: small;">    //对DIV标签自动q行格式?plugins/format/plugin.js<br /> config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };</span> </p> <p><span style="font-size: small;">    //对H1标签自动q行格式?plugins/format/plugin.js<br /> config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };</span> </p> <p><span style="font-size: small;">    //对H2标签自动q行格式?plugins/format/plugin.js<br /> config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };</span> </p> <p><span style="font-size: small;">    //对H3标签自动q行格式?plugins/format/plugin.js<br /> config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } };</span> </p> <p><span style="font-size: small;">    //对H4标签自动q行格式?plugins/format/plugin.js<br /> config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } };</span> </p> <p><span style="font-size: small;">    //对H5标签自动q行格式?plugins/format/plugin.js<br /> config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } };</span> </p> <p><span style="font-size: small;">    //对H6标签自动q行格式?plugins/format/plugin.js<br /> config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } };</span> </p> <p><span style="font-size: small;">    //对P标签自动q行格式?plugins/format/plugin.js<br /> config.format_p = { element : 'p', attributes : { class : 'normalPara' } };</span> </p> <p><span style="font-size: small;">    //对PRE标签自动q行格式?plugins/format/plugin.js<br /> config.format_pre = { element : 'pre', attributes : { class : 'co</span> <span style="font-size: small;">de' } };</span> </p> <p><span style="font-size: small;">    //用分号分隔的标签名字 在工h上显C?plugins/format/plugin.js<br /> config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';</span> </p> <p><span style="font-size: small;">    //是否使用完整的html~辑模式 如用,其源码将包含Q?lt;html><body></body></html>{标{?br /> config.fullPage = false;</span> </p> <p><span style="font-size: small;">    //是否忽略D落中的I字W?若不忽略 则字W将?#8220;”表示 plugins/wysiwygarea/plugin.js<br /> config.ignoreEmptyParagraph = true;</span> </p> <p><span style="font-size: small;">    //在清除图片属性框中的链接属性时 是否同时清除两边?lt;a>标签 plugins/image/plugin.js<br /> config.image_removeLinkByEmptyURL = true;</span> </p> <p><span style="font-size: small;">    //一l用逗号分隔的标{֐Uͼ昄在左下角的层ơ嵌套中 plugins/menu/plugin.js.<br /> config.menu_groups ='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea';</span> </p> <p><span style="font-size: small;">    //昄子菜单时的gq,单位Qms plugins/menu/plugin.js<br /> config.menu_subMenuDelay = 400;</span> </p> <p><span style="font-size: small;">    //当执?#8220;新徏”命oӞ~辑器中的内?plugins/newpage/plugin.js<br /> config.newpage_html = '';</span> </p> <p><span style="font-size: small;">    //当从word里复制文字进来时Q是否进行文字的格式化去?plugins/pastefromword/plugin.js<br /> config.pasteFromWordIgnoreFontFace = true; //默认为忽略格?/span> </p> <p><span style="font-size: small;">    //是否使用<h1><h2>{标{修饰或者代替从word文档中粘贴过来的内容 plugins/pastefromword/plugin.js<br /> config.pasteFromWordKeepsStructure = false;</span> </p> <p><span style="font-size: small;">    //从word中粘贴内Ҏ是否U除格式 plugins/pastefromword/plugin.js<br /> config.pasteFromWordRemoveStyle = false;</span> </p> <p><span style="font-size: small;">    //对应后台语言的类型来对输出的HTML内容q行格式化,默认为空<br /> config.protectedSource.push( /<\?[\s\S]*?\?>/g );   // PHP Co</span> <span style="font-size: small;">de<br /> config.protectedSource.push( //g );   // ASP Co</span> <span style="font-size: small;">de<br /> config.protectedSource.push( /(]+>[\s|\S]*?<\/asp:[^\>]+>)|(]+\/>)/gi );   // ASP.Net Co</span> <span style="font-size: small;">de</span> </p> <p><span style="font-size: small;">    //当输入:shift+Enter时插入的标签<br /> config.shiftEnterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV</span> </p> <p><span style="font-size: small;">    //可选的表情替代字符 plugins/smiley/plugin.js.<br /> config.smiley_descriptions = [<br /> ':)', ':(', ';)', ':D', ':/', ':P',<br /> '', '', '', '', '', '',<br /> '', ';(', '', '', '', '',<br /> '', ':kiss', '' ];</span> </p> <p><span style="font-size: small;">    //对应的表情图?plugins/smiley/plugin.js<br /> config.smiley_images = [<br /> 'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif',<br /> 'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif',<br /> 'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif',<br /> 'broken_heart.gif','kiss.gif','envelope.gif'];</span> </p> <p><span style="font-size: small;">    //表情的地址 plugins/smiley/plugin.js<br /> config.smiley_path = 'plugins/smiley/images/';</span> </p> <p><span style="font-size: small;">    //面载入Ӟ~辑框是否立卌得焦?plugins/editingblock/plugin.js plugins/editingblock/plugin.js.<br /> config.startupFocus = false;</span> </p> <p><span style="font-size: small;">    //载入Ӟ以何U方式编?源码和所见即所?"source"?wysiwyg" plugins/editingblock/plugin.js.<br /> config.startupMode ='wysiwyg';</span> </p> <p><span style="font-size: small;">    //载入Ӟ是否昄框体的边?plugins/showblocks/plugin.js<br /> config.startupOutlineBlocks = false;</span> </p> <p><span style="font-size: small;">    //是否载入样式文g plugins/stylescombo/plugin.js.<br /> config.stylesCombo_stylesSet = 'default';<br /> //以下为可?br /> config.stylesCombo_stylesSet = 'mystyles';<br /> config.stylesCombo_stylesSet = 'mystyles:/editorstyles/styles.js';<br /> config.stylesCombo_stylesSet = 'mystyles:http://www.example.com/editorstyles/styles.js';</span> </p> <p><span style="font-size: small;">    //起始的烦引?br /> config.tabIndex = 0;</span> </p> <p><span style="font-size: small;">    //当用户键入TABӞ~辑器走q的I格敎ͼ(&nbsp;) 当gؓ0Ӟ焦点移出编辑框 plugins/tab/plugin.js<br /> config.tabSpaces = 0;</span> </p> <p><span style="font-size: small;">    //默认使用的模?plugins/templates/plugin.js.<br /> config.templates = 'default';</span> </p> <p><span style="font-size: small;">    //用逗号分隔的模板文件plugins/templates/plugin.js.<br /> config.templates_files = [ 'plugins/templates/templates/default.js' ]</span> </p> <p><span style="font-size: small;">    //当用模板时Q?#8220;~辑内容被替换”框是否选中 plugins/templates/plugin.js<br /> config.templates_replaceContent = true;</span> </p> <p><span style="font-size: small;">    //主题<br /> config.theme = 'default';</span> </p> <p><span style="font-size: small;">    //撤销的记录步?plugins/undo/plugin.js<br /> config.undoStackSize =20;</span> </p> <p><span style="font-size: small;">// ?CKEditor 中集?CKFinderQ注?ckfinder 的\径选择要正?br /> //CKFinder.SetupCKEditor(null, '/ckfinder/');</span> </p> <p><span style="color: #0000ff; font-size: small;"><strong>二?一些用技?/strong> </span> </p> <p><span style="color: #993300; font-size: small;">1、在面中即时设|编辑器</span> </p> <p><span style="font-size: small;"><script type="text/javas</span> <span style="font-size: small;">cript"><br /> //CZ1Q设|工h为基本工hQ高度ؓ70<br /> CKEDITOR.replace('<%=tbLink.ClientID.Replace("_","$") %>',<br /> { toolbar:'Basic', height:70 });<br /> //CZ2Q工h定义cd<br /> CKEDITOR.replace( 'editor1',<br /> {<br /> toolbar :<br /> [<br /> //加粗     斜体Q?nbsp;    下划U?nbsp;     I过U?nbsp;     下标?nbsp;       上标?br /> ['Bold','Italic','Underline','Strike','Subscript','Superscript'],<br /> //数字列表          实体列表            减小~进    增大~进<br /> ['NumberedList','BulletedList','-','Outdent','Indent'],<br /> //左对?nbsp;            居中寚w          叛_?nbsp;         两端寚w<br /> ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],<br /> //链?取消链?锚点<br /> ['Link','Unlink','Anchor'],<br /> //囄    flash    表格       水^U?nbsp;           表情       Ҏ字符        分页W?br /> ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],<br /> '/',<br /> //样式       格式      字体    字体大小<br /> ['Styles','Format','Font','FontSize'],<br /> //文本颜色     背景颜色<br /> ['TextColor','BGColor'],<br /> //全屏           昄区块<br /> ['Maximize', 'ShowBlocks','-']<br /> ]<br /> }<br /> );<br /> </script></span> </p> <p><span style="color: #0000ff; font-size: small;"><strong>三、精ckeditor</strong> </span> </p> <p><span style="font-size: small;">    在部|到Web服务器上Ӟ下列文g夹和文g都可以删除:</span> </p> <p><span style="font-size: small;">    /_samples Q示例文件夹Q?/span> </p> <p><span style="font-size: small;">    /_source Q未压羃源程序;</span> </p> <p><span style="font-size: small;">    /lang文g夹下?zh-cn.js、en.js 以外的文Ӟ也可以根据需要保留其他语a文gQ;</span> </p> <p><span style="font-size: small;">    根目录下?changes.html(更新列表)Qinstall.html(安装指向)Qlicense.html(使用许可)Q?/span> </p> </div></div><br />from:http://robin88129.iteye.com/blog/1123222<img src ="http://www.aygfsteel.com/liangcmwn/aggbug/361112.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/liangcmwn/" target="_blank">liangcmwn</a> 2011-10-13 09:54 <a href="http://www.aygfsteel.com/liangcmwn/articles/361112.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> վ֩ģ壺 <a href="http://" target="_blank">ȳ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ҵ</a>| <a href="http://" target="_blank">»</a>| <a href="http://" target="_blank">ǿ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank">Ƹ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ī</a>| <a href="http://" target="_blank">Ԫı</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƶ</a>| <a href="http://" target="_blank">״</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ϵ</a>| <a href="http://" target="_blank">¬</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">̩</a>| <a href="http://" target="_blank">̨</a>| <a href="http://" target="_blank">޳</a>| <a href="http://" target="_blank">ԭ</a>| <a href="http://" target="_blank">Ϫ</a>| <a href="http://" target="_blank"></a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>