区块链的未来 区块链greek

古泉财经 74 0

今天给各位分享区块链greek的知识,其中也会对区块链的未来进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

如何配置CKEditor的config

一、使用方法:

1、在页面head中引入ckeditor核心文件ckeditor.js

script type="text/javascript" src="ckeditor/ckeditor.js"/script

2、在使用编辑器的地方插入HTML控件textarea

textarea id="TextArea1" cols="20" rows="2" class="6ca2-3a82-7e83-7b78 ckeditor"/textarea

如果是ASP.NET环境,也可用服务器端控件TextBox

asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="3a82-7e83-7b78-7d8a ckeditor"/asp:TextBox

注意在控件中加上 class="7e83-7b78-7d8a-555a ckeditor" 。

3、将相应的控件替换成编辑器代码

script type="text/javascript"

CKEDITOR.replace('TextArea1');

//如果是在ASP.NET环境下用的服务器端控件TextBox

CKEDITOR.replace('tbContent');

//如果TextBox控件在母版页中,要这样写

CKEDITOR.replace('%=tbContent.ClientID.Replace("_","$") %');

/script

4、配置编辑器

ckeditor的配置都集中在 ckeditor/config.js 文件中,下面是一些常用的配置参数:

复制代码 代码如下:

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

config.language = 'zh-cn';

// 设置宽高

config.width = 400;

config.height = 400;

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

config.skin = 'v2';

// 背景颜色

config.uiColor = '#FFF';

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

config.toolbar = 'Basic';

config.toolbar = 'Full';

这将配合:

config.toolbar_Full = [

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

['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

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

['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],

'/',

['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

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

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

['Link','Unlink','Anchor'],

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

'/',

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

['TextColor','BGColor']

];

//工具栏是否可以被收缩

config.toolbarCanCollapse = true;

//工具栏的位置

config.toolbarLocation = 'top';//可选:bottom

//工具栏默认是否展开

config.toolbarStartupExpanded = true;

// 取消 “拖拽以改变尺寸”功能 plugins/resize/plugin.js

config.resize_enabled = false;

//改变大小的最大高度

config.resize_maxHeight = 3000;

//改变大小的最大宽度

config.resize_maxWidth = 3000;

//改变大小的最小高度

config.resize_minHeight = 250;

php程序员之家

//改变大小的最小宽度

config.resize_minWidth = 750;

// 当提交包含有此编辑器的表单时,是否自动更新元素内的数据

config.autoUpdateElement = true;

// 设置是使用绝对目录还是相对目录,为空为相对目录

config.baseHref = ''

// 编辑器的z-index值

config.baseFloatZIndex = 10000;

//设置快捷键

config.keystrokes = [

[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], //获取焦点

[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], //元素焦点

[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], //文本菜单

[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], //撤销

[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], //重做

[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ], //

[ CKEDITOR.CTRL + 76 /*L*/, 'link' ], //链接

[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], //粗体

[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], //斜体

[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ], //下划线

[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]

]

//设置快捷键 可能与浏览器快捷键冲突 plugins/keystrokes/plugin.js.

config.blockedKeystrokes = [

CKEDITOR.CTRL + 66 /*B*/,

CKEDITOR.CTRL + 73 /*I*/,

CKEDITOR.CTRL + 85 /*U*/

]

//设置编辑内元素的背景色的取值 plugins/colorbutton/plugin.js.

config.colorButton_backStyle = {

element : 'span',

styles : { 'background-color' : '#(color)' }

}

//设置前景色的取值 plugins/colorbutton/plugin.js

config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,

006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,

A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,

FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'

//是否在选择颜色时显示“其它颜色”选项 plugins/colorbutton/plugin.js

config.colorButton_enableMore = false

php程序员之家

//区块的前景色默认值设置 plugins/colorbutton/plugin.js

config.colorButton_foreStyle = {

element : 'span',

styles : { 'color' : '#(color)' }

};

//所需要添加的CSS文件 在此添加 可使用相对路径和网站的绝对路径

config.contentsCss = './contents.css';

//文字方向

config.contentsLangDirection = 'rtl'; //从左到右

//CKeditor的配置文件 若不想配置 留空即可

CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } );

//界面编辑框的背景色 plugins/dialog/plugin.js

config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; //可设置参考

config.dialog_backgroundCoverColor = 'white' //默认

//背景的不透明度 数值应该在:0.0~1.0 之间 plugins/dialog/plugin.js

config.dialog_backgroundCoverOpacity = 0.5

//移动或者改变元素时 边框的吸附距离 单位:像素 plugins/dialog/plugin.js

config.dialog_magnetDistance = 20;

//是否拒绝本地拼写检查和提示 默认为拒绝 目前仅firefox和safari支持 plugins/wysiwygarea/plugin.js.

config.disableNativeSpellChecker = true

//进行表格编辑功能 如:添加行或列 目前仅firefox支持 plugins/wysiwygarea/plugin.js

config.disableNativeTableHandles = true; //默认为不开启

//是否开启 图片和表格 的改变大小的功能 config.disableObjectResizing = true;

config.disableObjectResizing = false //默认为开启

//设置HTML文档类型

config.docType = '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "' ;

//是否对编辑区域进行渲染 plugins/editingblock/plugin.js

config.editingBlock = true;

//编辑器中回车产生的标签

config.enterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//是否使用HTML实体进行输出 plugins/entities/plugin.js

config.entities = true;

//定义更多的实体 plugins/entities/plugin.js

config.entities_additional = '#39'; //其中#代替了

//是否转换一些难以显示的字符为相应的HTML字符 plugins/entities/plugin.js

config.entities_greek = true;

//是否转换一些拉丁字符为HTML plugins/entities/plugin.js

config.entities_latin = true;

//是否转换一些特殊字符为ASCII字符 如"This is Chinese: 汉语."转换为"This is Chinese: 汉语." plugins/entities/plugin.js

config.entities_processNumerical = false;

//添加新组件

config.extraPlugins = 'myplugin'; //非默认 仅示例

//使用搜索时的高亮色 plugins/find/plugin.js

config.find_highlight = {

element : 'span',

styles : { 'background-color' : '#ff0', 'color' : '#00f' }

};

//默认的字体名 plugins/font/plugin.js

config.font_defaultLabel = 'Arial';

//字体编辑时的字符集 可以添加常用的中文字符:宋体、楷体、黑体等 plugins/font/plugin.js

config.font_names = 'Arial;Times New Roman;Verdana';

//文字的默认式样 plugins/font/plugin.js

config.font_style = {

element : 'span',

styles : { 'font-family' : '#(family)' },

overrides : [ { element : 'font', attributes : { 'face' : null } } ]

};

//字体默认大小 plugins/font/plugin.js

config.fontSize_defaultLabel = '12px';

//字体编辑时可选的字体大小 plugins/font/plugin.js

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'

//设置字体大小时 使用的式样 plugins/font/plugin.js

config.fontSize_style = {

element : 'span',

styles : { 'font-size' : '#(size)' },

overrides : [ { element : 'font', attributes : { 'size' : null } } ]

};

//是否强制复制来的内容去除格式 plugins/pastetext/plugin.js

config.forcePasteAsPlainText =false //不去除

//是否强制用“”来代替“”plugins/htmldataprocessor/plugin.js

config.forceSimpleAmpersand = false;

//对address标签进行格式化 plugins/format/plugin.js

config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };

//对DIV标签自动进行格式化 plugins/format/plugin.js

config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };

//对H1标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };

//对H2标签自动进行格式化 plugins/format/plugin.js

config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };

//对H3标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } };

php程序员之家

//对H4标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } };

//对H5标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } };

//对H6标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } };

//对P标签自动进行格式化 plugins/format/plugin.js

config.format_p = { element : 'p', attributes : { class : 'normalPara' } };

php程序员之家

//对PRE标签自动进行格式化 plugins/format/plugin.js

config.format_pre = { element : 'pre', attributes : { class : 'code' } };

//用分号分隔的标签名字 在工具栏上显示 plugins/format/plugin.js

config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';

//是否使用完整的html编辑模式 如使用,其源码将包含:htmlbody/body/html等标签

config.fullPage = false;

//是否忽略段落中的空字符 若不忽略 则字符将以“”表示 plugins/wysiwygarea/plugin.js

config.ignoreEmptyParagraph = true;

//在清除图片属性框中的链接属性时 是否同时清除两边的a标签 plugins/image/plugin.js

config.image_removeLinkByEmptyURL = true;

//一组用逗号分隔的标签名称,显示在左下角的层次嵌套中 plugins/menu/plugin.js.

config.menu_groups ='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea';

//显示子菜单时的延迟,单位:ms plugins/menu/plugin.js

config.menu_subMenuDelay = 400;

//当执行“新建”命令时,编辑器中的内容 plugins/newpage/plugin.js

config.newpage_html = '';

//当从word里复制文字进来时,是否进行文字的格式化去除 plugins/pastefromword/plugin.js

config.pasteFromWordIgnoreFontFace = true; //默认为忽略格式

//是否使用h1h2等标签修饰或者代替从word文档中粘贴过来的内容 plugins/pastefromword/plugin.js

config.pasteFromWordKeepsStructure = false;

//从word中粘贴内容时是否移除格式 plugins/pastefromword/plugin.js

config.pasteFromWordRemoveStyle = false;

//对应后台语言的类型来对输出的HTML内容进行格式化,默认为空

config.protectedSource.push( /\?[\s\S]*?\?/g ); // PHP Code

config.protectedSource.push( //g ); // ASP Code

config.protectedSource.push( /(]+[\s|\S]*?\/asp:[^\]+)|(]+\/)/gi ); // ASP.Net Code

//当输入:shift+Enter时插入的标签

config.shiftEnterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//可选的表情替代字符 plugins/smiley/plugin.js.

config.smiley_descriptions = [

':)', ':(', ';)', ':D', ':/', ':P',

'', '', '', '', '', '',

'', ';(', '', '', '', '',

'', ':kiss', '' ];

//对应的表情图片 plugins/smiley/plugin.js

config.smiley_images = [

'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif',

'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif',

'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif',

'broken_heart.gif','kiss.gif','envelope.gif'];

//表情的地址 plugins/smiley/plugin.js

config.smiley_path = 'plugins/smiley/images/';

联想台式机greekpro可以增加一块机械硬盘吗

太可以加区块链greek了。

在机箱内加机械硬盘需保证二个条件区块链greek,一是有存放硬盘区块链greek的地方区块链greek,二是有供硬盘使用的数据线和电源接头。这二个条件台式机箱内空间大,放个机械硬盘是不成问题的,台式机电源有备用的硬盘数据线和机械硬盘电源接头,如没有可用分线器转接。

OK是什么意思?

OK

adj.

1.很好的 2.还不错的

Ok

[EJ5keI]

adj.

好, 对, 行

adv.

好, 对, 可以

n.

同意

OK

OK 1或 O.K. 或 o.kay

AHD:[½-k³“] 【非正式用语】

D.J.[ou6kei]

K.K.[o6ke]

n.(名词)

【复数】 OK's或 O.K.'s 或 o.kays

Approval; agreement:

认可;同意:

got her supervisor's OK before taking a day off.

事先征得了管理人员的同意准假一天

v.tr.(及物动词)

OK'd或 O.K.'d 或 o.kayed OK'ing或 O.K.'ing 或 o.kay.ing OK's或 O.K.'s 或 o.kays

To approve of or agree to; authorize.

赞成或同意;批准

interj.(感叹词)

Used to express approval or agreement.

行:用以表达准许或同意之意

Abbreviation of oll korrect

oll korrect的缩写

slang respelling of all correct

all correct的俚语重新拼写

OK

adv.(副词)

adj.(形容词)

Although we use this word hundreds of times a week whether things are OK or not, we have probably rarely wondered about its history. That history is in fact a brief one, the word being first recorded in 1839, though it was no doubt in circulation before then. Much scholarship has been expended on the origins of OK, but Allen Walker Read has conclusively proved that OK is based on a sort of joke. Someone pronounced the phrase all correct as oll (or orl ) correct, and the same person or someone else spelled it oll korrect, which abbreviated gives us OK. This term gained wide currency by being used as a political slogan by the 1840 Democratic candidate Martin Van Buren, who was nicknamed Old Kinderhook because he was born in Kinderhook, New York. An editorial of the same year, referring to the receipt of a pin with the slogan O.K., had this comment: “frightful letters . . . significant of the birth-place of Martin Van Buren, old Kinderhook, as also the rallying word of the Democracy of the late election, ‘all correct’ . . . Those who wear them should bear in mind that it will require their most strenuous exertions . . . to make all things O.K.”

虽然我们一星期都要使用这个词达上百次来表示事情状况的行或不行,但我们可能很少有人去探究这个词的历史。实际上,这个词的历史并不长,它第一次被记录是在1839年,但毫无疑问这个词在此之前就流通使用了。对于OK 这个词的出处,已进行了很多研究, 但艾伦·沃克·里德最终证实OK 是出自一个什么笑话。 有人把all correct 这个词组发音成 oll (或 orl ) correct, 这个人或别人又把它拼写成oll korrect, 最后缩略成OK 。 这一名词术语被1804年的民主党总统候选人马丁·凡·布伦作为政治宣传口号而得到广泛运用。马丁的绰号是老金德胡克 , 因为他出生于纽约州的金德胡克。同年有一篇社论,对于收到带有OK 口号的饰针之事作了以下评论: “可怕的字母,不仅对于说明马丁·凡·布伦的出生地纽约州的金德胡克很重要,而且它还是近期所举行大选的民主党的颇具号召力的政治宣传口号,“一切正确”…那些别着这些饰针的人还应该心中有数要想把一切事都办得令人满意得需要他们长期不懈的努力”

OK

OK 2

abbr.(略语)

Oklahoma.

Oklahoma.

ok

Important derivatives are: eye, daisy, window, eyelet, ocular, inoculate, monocle, myopia, autopsy, synopsis, optic, optometry

重要派生词为: eye, daisy, window, eyelet, ocular, inoculate, monocle, myopia, autopsy, synopsis, optic, optometry

To see.

看见,了解,观察,辨别.

eye ; daisy , from Old English ¶e , eye;

eye ; daisy , 源自 古英语 ¶e , 眼睛;

walleyed , window , from Old Norse auga , eye;

walleyed , window , 源自 古斯堪的纳维亚语 auga , 眼睛,视觉;

ogle , from Low German oog , oge , eye. a, b, and c all from Germanic *aug½- (with taboo deformation).

ogle , 源自 低地德语 oog , oge , 眼睛. a, b, 和 c 都源自 日耳曼语 *aug½- (和破坏禁忌).

Suffixed form *ok w-olo- .

添加后缀的形式*ok w-olo- .

eyelet , ocellus , ocular , oculist , ullage ; inoculate , monocle , oculomotor , pinochle , from Latin oculus , eye;

eyelet , ocellus , ocular , oculist , ullage ; inoculate , monocle , oculomotor , pinochle , 源自 拉丁语 oculus , 眼睛;

inveigle , from French aveugle , blind, from Gallo-Latin compound *ab-oculus , blind, modeled on Gaulish ex-ops , blind.

inveigle , 源自 法语 aveugle , 盲人, 源自 法国拉丁语 复合词 *ab-oculus , 盲目的, 模仿 高卢语 ex-ops , 瞎的.

Form *ok w-s . metopic , myopia , nyctalopia , Pelops , phlogopite , pyrope , triceratops , from Greek ½s , eye (and stem *op- , to see).

形式*ok w-s . metopic , myopia , nyctalopia , Pelops , phlogopite , pyrope , triceratops , 源自 希腊语 ½s , 眼睛 (和字干 *op- , 看见).

Suffixed form *ok w-ti- . ( opsin ), -opsis , -opsy ; autopsy , ( iodopsin ), ( rhodopsin ), synopsis , from Greek opsis , sight, appearance.

添加后缀的形式*ok w-ti- . ( opsin ), -opsis , -opsy ; autopsy , ( iodopsin ), ( rhodopsin ), synopsis , 源自 希腊语 opsis , 景观, 外表.

Suffixed form *ok w-to- . optic ; diopter , optometry , panoptic , from Greek optos , seen, visible.

添加后缀的形式*ok w-to- . optic ; diopter , optometry , panoptic , 源自 希腊语 optos , 看到, 看得见的.

Suffixed form *ok w-³ . metope , from Greek op¶} , opening.

添加后缀的形式*ok w-³ . metope , 源自 希腊语 op¶} , 开口.

Suffixed form *ok w-mö . ommatidium , ommatophore , from Greek omma (N *opma ), eye.

添加后缀的形式*ok w-mö . ommatidium , ommatophore , 源自 希腊语 omma (N *opma ), 眼睛.

Suffixed form *ok w-tro- . catoptric , from Greek katoptron , “back-looker,” mirror ( kata- , down, back; see kat- ).

添加后缀的形式*ok w-tro- . catoptric , 源自 希腊语 katoptron , “可以看后背的物体,” 镜子 ( kata- , 向下的, 向后的; 参见 kat-).

ophthalmo- ; exophthalmos , from Greek ophthalmos , eye (with taboo deformation).

ophthalmo- ; exophthalmos , 源自 希腊语 ophthalmos , 注意 (不再注意禁忌).

Zero-grade form *…k w- (of oldest full-grade form *…k w- ).

零级形式*…k w- ( *…k w- 的最古老的全级形式).

(see ant- ) Latin antºs , “appearing before, having prior aspect,” former ( *anti- , before);

(参见ant-) 拉丁语 antºs , “在…之前出现, 有较早的因素,” 从前的,前者的 *anti- , 在…之前;

(see ³ter- ) Latin á½x} , “black-looking,” frightful ( *atro- , black);

(参见³ter-) 拉丁语 á½x} , “面色阴沉的,” 可怕的( *atro- , 暗淡的);

(see ghwer- ) fer½x , “wild-looking,” fierce ( *ghwero- , wild).

(参见ghwer-) fer½x , “面相野蛮的,” 凶残的 ( *ghwero- , 野蛮的).

Pokorny ok ø}- 775.

波科尔尼ok ø}- 775.

OK

[EJ5keI]

adj.

很好的

还不错的

OK

adv.

良好地;顺利地

That car goes okay now.

那辆车子现在行驶情况良好。

好吗;好

Let's go there, okay?

我们去那里,好吗?

OK

n.

批准,认可

OK

vt.

okayed, okaying

同意;许可;批准;承认

OK

int.

好;行;不错 (= all right; correct)

editorconfig是什么文件

一、使用方法:

1、在页面head中引入ckeditor核心文件ckeditor.js

script type="text/javascript" src="ckeditor/ckeditor.js"/script

2、在使用编辑器的地方插入HTML控件textarea

textarea id="TextArea1" cols="20" rows="2" class="7b78-7d8a-555a-f269 ckeditor"/textarea

如果是ASP.NET环境,也可用服务器端控件TextBox

asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="2a4a-af2f-ee89-a5d1 ckeditor"/asp:TextBox

注意在控件中加上 class="af2f-ee89-a5d1-b8df ckeditor" 。

3、将相应的控件替换成编辑器代码

script type="text/javascript"

CKEDITOR.replace('TextArea1');

//如果是在ASP.NET环境下用的服务器端控件TextBox

CKEDITOR.replace('tbContent');

//如果TextBox控件在母版页中,要这样写

CKEDITOR.replace('%=tbContent.ClientID.Replace("_","$") %');

/script

4、配置编辑器

ckeditor的配置都集中在 ckeditor/config.js 文件中,下面是一些常用的配置参数:

复制代码 代码如下:

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

config.language = 'zh-cn';

// 设置宽高

config.width = 400;

config.height = 400;

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

config.skin = 'v2';

// 背景颜色

config.uiColor = '#FFF';

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

config.toolbar = 'Basic';

config.toolbar = 'Full';

这将配合:

config.toolbar_Full = [

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

['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

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

['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],

'/',

['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

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

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

['Link','Unlink','Anchor'],

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

'/',

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

['TextColor','BGColor']

];

//工具栏是否可以被收缩

config.toolbarCanCollapse = true;

//工具栏的位置

config.toolbarLocation = 'top';//可选:bottom

//工具栏默认是否展开

config.toolbarStartupExpanded = true;

// 取消 “拖拽以改变尺寸”功能 plugins/resize/plugin.js

config.resize_enabled = false;

//改变大小的最大高度

config.resize_maxHeight = 3000;

//改变大小的最大宽度

config.resize_maxWidth = 3000;

//改变大小的最小高度

config.resize_minHeight = 250;

php程序员之家

//改变大小的最小宽度

config.resize_minWidth = 750;

// 当提交包含有此编辑器的表单时,是否自动更新元素内的数据

config.autoUpdateElement = true;

// 设置是使用绝对目录还是相对目录,为空为相对目录

config.baseHref = ''

// 编辑器的z-index值

config.baseFloatZIndex = 10000;

//设置快捷键

config.keystrokes = [

[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], //获取焦点

[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], //元素焦点

[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], //文本菜单

[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], //撤销

[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], //重做

[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ], //

[ CKEDITOR.CTRL + 76 /*L*/, 'link' ], //链接

[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], //粗体

[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], //斜体

[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ], //下划线

[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]

]

//设置快捷键 可能与浏览器快捷键冲突 plugins/keystrokes/plugin.js.

config.blockedKeystrokes = [

CKEDITOR.CTRL + 66 /*B*/,

CKEDITOR.CTRL + 73 /*I*/,

CKEDITOR.CTRL + 85 /*U*/

]

//设置编辑内元素的背景色的取值 plugins/colorbutton/plugin.js.

config.colorButton_backStyle = {

element : 'span',

styles : { 'background-color' : '#(color)' }

}

//设置前景色的取值 plugins/colorbutton/plugin.js

config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,

006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,

A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,

FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'

//是否在选择颜色时显示“其它颜色”选项 plugins/colorbutton/plugin.js

config.colorButton_enableMore = false

php程序员之家

//区块的前景色默认值设置 plugins/colorbutton/plugin.js

config.colorButton_foreStyle = {

element : 'span',

styles : { 'color' : '#(color)' }

};

//所需要添加的CSS文件 在此添加 可使用相对路径和网站的绝对路径

config.contentsCss = './contents.css';

//文字方向

config.contentsLangDirection = 'rtl'; //从左到右

//CKeditor的配置文件 若不想配置 留空即可

CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } );

//界面编辑框的背景色 plugins/dialog/plugin.js

config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; //可设置参考

config.dialog_backgroundCoverColor = 'white' //默认

//背景的不透明度 数值应该在:0.0~1.0 之间 plugins/dialog/plugin.js

config.dialog_backgroundCoverOpacity = 0.5

//移动或者改变元素时 边框的吸附距离 单位:像素 plugins/dialog/plugin.js

config.dialog_magnetDistance = 20;

//是否拒绝本地拼写检查和提示 默认为拒绝 目前仅firefox和safari支持 plugins/wysiwygarea/plugin.js.

config.disableNativeSpellChecker = true

//进行表格编辑功能 如:添加行或列 目前仅firefox支持 plugins/wysiwygarea/plugin.js

config.disableNativeTableHandles = true; //默认为不开启

//是否开启 图片和表格 的改变大小的功能 config.disableObjectResizing = true;

config.disableObjectResizing = false //默认为开启

//设置HTML文档类型

config.docType = '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "' ;

//是否对编辑区域进行渲染 plugins/editingblock/plugin.js

config.editingBlock = true;

//编辑器中回车产生的标签

config.enterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//是否使用HTML实体进行输出 plugins/entities/plugin.js

config.entities = true;

//定义更多的实体 plugins/entities/plugin.js

config.entities_additional = '#39'; //其中#代替了

//是否转换一些难以显示的字符为相应的HTML字符 plugins/entities/plugin.js

config.entities_greek = true;

//是否转换一些拉丁字符为HTML plugins/entities/plugin.js

config.entities_latin = true;

//是否转换一些特殊字符为ASCII字符 如"This is Chinese: 汉语."转换为"This is Chinese: 汉语." plugins/entities/plugin.js

config.entities_processNumerical = false;

//添加新组件

config.extraPlugins = 'myplugin'; //非默认 仅示例

//使用搜索时的高亮色 plugins/find/plugin.js

config.find_highlight = {

element : 'span',

styles : { 'background-color' : '#ff0', 'color' : '#00f' }

};

//默认的字体名 plugins/font/plugin.js

config.font_defaultLabel = 'Arial';

//字体编辑时的字符集 可以添加常用的中文字符:宋体、楷体、黑体等 plugins/font/plugin.js

config.font_names = 'Arial;Times New Roman;Verdana';

//文字的默认式样 plugins/font/plugin.js

config.font_style = {

element : 'span',

styles : { 'font-family' : '#(family)' },

overrides : [ { element : 'font', attributes : { 'face' : null } } ]

};

//字体默认大小 plugins/font/plugin.js

config.fontSize_defaultLabel = '12px';

//字体编辑时可选的字体大小 plugins/font/plugin.js

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'

//设置字体大小时 使用的式样 plugins/font/plugin.js

config.fontSize_style = {

element : 'span',

styles : { 'font-size' : '#(size)' },

overrides : [ { element : 'font', attributes : { 'size' : null } } ]

};

//是否强制复制来的内容去除格式 plugins/pastetext/plugin.js

config.forcePasteAsPlainText =false //不去除

//是否强制用“”来代替“”plugins/htmldataprocessor/plugin.js

config.forceSimpleAmpersand = false;

//对address标签进行格式化 plugins/format/plugin.js

config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };

//对DIV标签自动进行格式化 plugins/format/plugin.js

config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };

//对H1标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };

//对H2标签自动进行格式化 plugins/format/plugin.js

config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };

//对H3标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } };

如何配置CKEditor显示的按钮?

你到Bo-Blog论坛下载“CKEditor_3.0.1_超强完美版_For_Bo-Blog”

里面 就有 config.js 详细配置。

或者查阅 官方文档 说明:

下面附加的就是 官方文档 抄来的:

-----------------------------------------

如果想增加 拓展插件 可以到

里面下载

-----------------------------------------

附加:

config.js参数说明

//当提交包含有此编辑器的表单时,是否自动更新元素内的数据

config.autoUpdateElement = true

//编辑器的z-index值

config.baseFloatZIndex = 10000

//设置是使用绝对目录还是相对目录,为空为相对目录

config.baseHref = ''

//设置快捷键 从上往下依次是:获取焦点,元素焦点,文本菜单,撤销,重做,重做,链接,粗体,斜体,下划线

config.keystrokes =

[

[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ],

[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ],

[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ],

[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ],

[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ],

[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ],

[ CKEDITOR.CTRL + 76 /*L*/, 'link' ],

[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ],

[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ],

[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ],

[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]

]

//设置快捷键 可能与浏览器快捷键冲突 plugins/keystrokes/plugin.js.

config.blockedKeystrokes =

[

CKEDITOR.CTRL + 66 /*B*/,

CKEDITOR.CTRL + 73 /*I*/,

CKEDITOR.CTRL + 85 /*U*/

]

//设置编辑内元素的背景色的取值 plugins/colorbutton/plugin.js.

config.colorButton_backStyle =

{

element : 'span',

styles : { 'background-color' : '#(color)' }

}

//设置前景色的取值 plugins/colorbutton/plugin.js

config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,

800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,F

AEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF’

//是否在选择颜色时显示“其它颜色”选项 plugins/colorbutton/plugin.js

config.colorButton_enableMore = false

//区块的前景色默认值设置 plugins/colorbutton/plugin.js

config.colorButton_foreStyle =

{

element : 'span',

styles : { 'color' : '#(color)' }

};

//所需要添加的CSS文件 在此添加 可使用相对路径和网站的绝对路径

config.contentsCss = './contents.css';

//文字方向

config.contentsLangDirection = 'rtl';//从左到右

//CKeditor的配置文件 若不想配置 留空即可

CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } );

//界面的语言配置 设置为'zh-cn'即可

config.defaultLanguage = 'en';

//界面编辑框的背景色 plugins/dialog/plugin.js

config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; //可设置参考

config.dialog_backgroundCoverColor = 'white' //默认

//背景的不透明度 数值应该在:0.0~1.0 之间 plugins/dialog/plugin.js

config.dialog_backgroundCoverOpacity = 0.5

//移动或者改变元素时 边框的吸附距离 单位:像素 plugins/dialog/plugin.js

config.dialog_magnetDistance = 20;

//是否拒绝本地拼写检查和提示 默认为拒绝 目前仅firefox和safari支持 plugins/wysiwygarea/plugin.js.

config.disableNativeSpellChecker = true

//进行表格编辑功能 如:添加行或列 目前仅firefox支持 plugins/wysiwygarea/plugin.js

config.disableNativeTableHandles = true; //默认为不开启

//是否开启 图片和表格 的改变大小的功能 config.disableObjectResizing = true;

config.disableObjectResizing = false //默认为开启

//设置HTML文档类型

config.docType = ''""'

//是否对编辑区域进行渲染 plugins/editingblock/plugin.js

config.editingBlock = true

//编辑器中回车产生的标签

config.enterMode = CKEDITOR.ENTER_P //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//是否使用HTML实体进行输出 plugins/entities/plugin.js

config.entities = true

//定义更多的实体 plugins/entities/plugin.js

config.entities_additional = '#39' //其中#代替了

//是否转换一些难以显示的字符为相应的HTML字符 plugins/entities/plugin.js

config.entities_greek = true

//是否转换一些拉丁字符为HTML plugins/entities/plugin.js

config.entities_latin = true;

//是否转换一些特殊字符为ASCII字符 如:"This is Chinese: 汉语."转换为:"This is Chinese: 汉语."

plugins/entities/plugin.js

config.entities_processNumerical = false

//添加新组件

config.extraPlugins = 'myplugin'; //非默认 仅示例

//使用搜索时的高亮色 plugins/find/plugin.js

config.find_highlight =

{

element : 'span',

styles : { 'background-color' : '#ff0', 'color' : '#00f' }

};

//默认的字体名 plugins/font/plugin.js

config.font_defaultLabel = 'Arial';

//字体编辑时的字符集 可以添加常用的中文字符:宋体、楷体、黑体等 plugins/font/plugin.js

config.font_names = 'Arial;Times New Roman;Verdana';

//文字的默认式样 plugins/font/plugin.js

config.font_style =

{

element : 'span',

styles : { 'font-family' : '#(family)' },

overrides : [ { element : 'font', attributes : { 'face' : null } } ]

};

//字体默认大小 plugins/font/plugin.js

config.fontSize_defaultLabel = '12px';

//字体编辑时可选的字体大小 plugins/font/plugin.js

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

'

//设置字体大小时 使用的式样 plugins/font/plugin.js

config.fontSize_style =

{

element : 'span',

styles : { 'font-size' : '#(size)' },

overrides : [ { element : 'font', attributes : { 'size' : null } } ]

};

//是否强制复制来的内容去除格式 plugins/pastetext/plugin.js

config.forcePasteAsPlainText =false //不去除

//是否强制用“”来代替“”plugins/htmldataprocessor/plugin.js

config.forceSimpleAmpersand = false;

//对address标签进行格式化 plugins/format/plugin.js

config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };

//对DIV标签自动进行格式化 plugins/format/plugin.js

config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };

//对H1标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };

//对H2标签自动进行格式化 plugins/format/plugin.js

config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };

//对H3标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } };

//对H4标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } };

//对H5标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } };

//对H6标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } };

//对P标签自动进行格式化 plugins/format/plugin.js

config.format_p = { element : 'p', attributes : { class : 'normalPara' } };

//对PRE标签自动进行格式化 plugins/format/plugin.js

config.format_pre = { element : 'pre', attributes : { class : 'code' } };

//用分号分隔的标签名字 在工具栏上显示 plugins/format/plugin.js

config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div'

//是否使用完整的html编辑模式 如使用,其源码将包含:等标签

config.fullPage = false

//编辑器的高度

config.height = 200

//是否忽略段落中的空字符 若不忽略 则字符将以“”表示 plugins/wysiwygarea/plugin.js

config.ignoreEmptyParagraph = true

//在清除图片属性框中的链接属性时 是否同时清除两边的标签 plugins/image/plugin.js

config.image_removeLinkByEmptyURL = true

//界面的现实语言 可选择"zh-cn"

config.language = true

//一组用逗号分隔的标签名称,显示在左下角的层次嵌套中 plugins/menu/plugin.js.

config.menu_groups='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,

radio,textfield,hiddenfield,imagebutton,button,select,textarea'

//显示子菜单时的延迟,单位:ms plugins/menu/plugin.js

config.menu_subMenuDelay = 400;

//当执行“新建”命令时,编辑器中的内容 plugins/newpage/plugin.js

config.newpage_html=""

//当从word里复制文字进来时,是否进行文字的格式化去除 plugins/pastefromword/plugin.js

config.pasteFromWordIgnoreFontFace = true; //默认为忽略格式

//是否使用 等标签修饰或者代替从word文档中粘贴过来的内容 plugins/pastefromword/plugin.js

config.pasteFromWordKeepsStructure = false;

//从word中粘贴内容时是否移除格式 plugins/pastefromword/plugin.js

config.pasteFromWordRemoveStyle = false

//对应后台语言的类型来对输出的HTML内容进行格式化

config.protectedSource.push( /\?[\s\S]*?\?/g ); // PHP Code

config.protectedSource.push( //g ); // ASP Code

config.protectedSource.push( /(]+[\s|\S]*?\/asp:[^\]+)|(]+\/)/gi ); // ASP.Net Code默认为空

//是否允许改变大小 plugins/resize/plugin.js

config.resize_enabled = true

//改变大小的最大高度 plugins/resize/plugin.js

config.resize_maxHeight = 3000;

//改变大小的最大宽度 plugins/resize/plugin.js

config.resize_maxWidth = 3000;

//改变大小的最小高度 plugins/resize/plugin.js

config.resize_minHeight = 250;

//改变大小的最小宽度 plugins/resize/plugin.js

config.resize_minWidth = 750;

//当输入:shift+Enter是插入的标签

config.shiftEnterMode = CKEDITOR.ENTER_P;//可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//可选界面包

config.skin = 'default';

//可选的表情替代字符 plugins/smiley/plugin.js.

config.smiley_descriptions = [

':)', ':(', ';)', ':D', ':/', ':P',

'', '', '', '', '', '',

'', ';(', '', '', '', '',

'', ':kiss', '' ];

//对应的表情图片 plugins/smiley/plugin.js

config.smiley_images = [

'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif',

'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif'

,

'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif',

'broken_heart.gif','kiss.gif','envelope.gif'];

//表情的地址 plugins/smiley/plugin.js

config.smiley_path = 'plugins/smiley/images/'

//页面载入时,编辑框是否立即获得焦点 plugins/editingblock/plugin.js plugins/editingblock/plugin.js.

config.startupFocus = false

//载入时,以何种方式编辑 源码和所见即所得 "source"和"wysiwyg" plugins/editingblock/plugin.js.

config.startupMode ='wysiwyg'

//载入时,是否显示框体的边框 plugins/showblocks/plugin.js

config.startupOutlineBlocks = false

//是否载入样式文件 plugins/stylescombo/plugin.js.

config.stylesCombo_stylesSet = 'default';

//以下为可选

config.stylesCombo_stylesSet = 'mystyles';

config.stylesCombo_stylesSet = 'mystyles:/editorstyles/styles.js';

config.stylesCombo_stylesSet = 'mystyles:';

//起始的索引值

config.tabIndex =0

//当用户键入TAB时,编辑器走过的空格数,( ) 当值为0时,焦点将移出编辑框 plugins/tab/plugin.js

config.tabSpaces = 0

//默认使用的模板 plugins/templates/plugin.js.

config.templates = 'default'

//用逗号分隔的模板文件plugins/templates/plugin.js.

config.templates_files =[ 'plugins/templates/templates/default.js' ]

//当使用模板时,“编辑内容将被替换”框是否选中 plugins/templates/plugin.js

config.templates_replaceContent = true;

//主题

config.theme = 'default';

//使用的工具栏 plugins/toolbar/plugin.js

config.toolbar = ‘Full'

这将配合:

config.toolbar_Full =

[

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

['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

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

['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],

'/',

['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

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

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

['Link','Unlink','Anchor'],

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

'/',

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

['TextColor','BGColor']

];

//工具栏是否可以被收缩 plugins/toolbar/plugin.js.

config.toolbarCanCollapse = true

//工具栏的位置 plugins/toolbar/plugin.js

config.toolbarLocation = 'top';//可选:bottom

//工具栏默认是否展开 plugins/toolbar/plugin.js

config.toolbarStartupExpanded = true;

//撤销的记录步数 plugins/undo/plugin.js

config.undoStackSize =20

//编辑器的宽度 plugins/undo/plugin.js

config.width = ""

如何配置config

一、使用方法区块链greek

1、在页面head中引入ckeditor核心文件ckeditor.js

script type="text/javascript" src="ckeditor/ckeditor.js"/script

2、在使用编辑器区块链greek的地方插入HTML控件textarea

textarea id="TextArea1" cols="20" rows="2" class="ee89-a5d1-b8df-6548 ckeditor"/textarea

如果是ASP.NET环境区块链greek,也可用服务器端控件TextBox

asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="a5d1-b8df-6548-d877 ckeditor"/asp:TextBox

注意在控件中加上 class="b8df-6548-d877-b84a ckeditor" 。

3、将相应的控件替换成编辑器代码

script type="text/javascript"

CKEDITOR.replace('TextArea1');

//如果是在ASP.NET环境下用的服务器端控件TextBox

CKEDITOR.replace('tbContent');

//如果TextBox控件在母版页中区块链greek,要这样写

CKEDITOR.replace('%=tbContent.ClientID.Replace("_","$") %');

/script

4、配置编辑器

ckeditor的配置都集中在 ckeditor/config.js 文件中,下面是一些常用的配置参数区块链greek

复制代码 代码如下:

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

config.language = 'zh-cn';

// 设置宽高

config.width = 400;

config.height = 400;

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

config.skin = 'v2';

// 背景颜色

config.uiColor = '#FFF';

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

config.toolbar = 'Basic';

config.toolbar = 'Full';

这将配合:

config.toolbar_Full = [

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

['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],

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

['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],

'/',

['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],

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

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

['Link','Unlink','Anchor'],

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

'/',

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

['TextColor','BGColor']

];

//工具栏是否可以被收缩

config.toolbarCanCollapse = true;

//工具栏的位置

config.toolbarLocation = 'top';//可选:bottom

//工具栏默认是否展开

config.toolbarStartupExpanded = true;

// 取消 “拖拽以改变尺寸”功能 plugins/resize/plugin.js

config.resize_enabled = false;

//改变大小的最大高度

config.resize_maxHeight = 3000;

//改变大小的最大宽度

config.resize_maxWidth = 3000;

//改变大小的最小高度

config.resize_minHeight = 250;

php程序员之家

//改变大小的最小宽度

config.resize_minWidth = 750;

// 当提交包含有此编辑器的表单时,是否自动更新元素内的数据

config.autoUpdateElement = true;

// 设置是使用绝对目录还是相对目录,为空为相对目录

config.baseHref = ''

// 编辑器的z-index值

config.baseFloatZIndex = 10000;

//设置快捷键

config.keystrokes = [

[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], //获取焦点

[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], //元素焦点

[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], //文本菜单

[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], //撤销

[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], //重做

[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ], //

[ CKEDITOR.CTRL + 76 /*L*/, 'link' ], //链接

[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], //粗体

[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], //斜体

[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ], //下划线

[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]

]

//设置快捷键 可能与浏览器快捷键冲突 plugins/keystrokes/plugin.js.

config.blockedKeystrokes = [

CKEDITOR.CTRL + 66 /*B*/,

CKEDITOR.CTRL + 73 /*I*/,

CKEDITOR.CTRL + 85 /*U*/

]

//设置编辑内元素的背景色的取值 plugins/colorbutton/plugin.js.

config.colorButton_backStyle = {

element : 'span',

styles : { 'background-color' : '#(color)' }

}

//设置前景色的取值 plugins/colorbutton/plugin.js

config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,

006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,

A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,

FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'

//是否在选择颜色时显示“其它颜色”选项 plugins/colorbutton/plugin.js

config.colorButton_enableMore = false

php程序员之家

//区块的前景色默认值设置 plugins/colorbutton/plugin.js

config.colorButton_foreStyle = {

element : 'span',

styles : { 'color' : '#(color)' }

};

//所需要添加的CSS文件 在此添加 可使用相对路径和网站的绝对路径

config.contentsCss = './contents.css';

//文字方向

config.contentsLangDirection = 'rtl'; //从左到右

//CKeditor的配置文件 若不想配置 留空即可

CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } );

//界面编辑框的背景色 plugins/dialog/plugin.js

config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; //可设置参考

config.dialog_backgroundCoverColor = 'white' //默认

//背景的不透明度 数值应该在:0.0~1.0 之间 plugins/dialog/plugin.js

config.dialog_backgroundCoverOpacity = 0.5

//移动或者改变元素时 边框的吸附距离 单位:像素 plugins/dialog/plugin.js

config.dialog_magnetDistance = 20;

//是否拒绝本地拼写检查和提示 默认为拒绝 目前仅firefox和safari支持 plugins/wysiwygarea/plugin.js.

config.disableNativeSpellChecker = true

//进行表格编辑功能 如:添加行或列 目前仅firefox支持 plugins/wysiwygarea/plugin.js

config.disableNativeTableHandles = true; //默认为不开启

//是否开启 图片和表格 的改变大小的功能 config.disableObjectResizing = true;

config.disableObjectResizing = false //默认为开启

//设置HTML文档类型

config.docType = '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "' ;

//是否对编辑区域进行渲染 plugins/editingblock/plugin.js

config.editingBlock = true;

//编辑器中回车产生的标签

config.enterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//是否使用HTML实体进行输出 plugins/entities/plugin.js

config.entities = true;

//定义更多的实体 plugins/entities/plugin.js

config.entities_additional = '#39'; //其中#代替了

//是否转换一些难以显示的字符为相应的HTML字符 plugins/entities/plugin.js

config.entities_greek = true;

//是否转换一些拉丁字符为HTML plugins/entities/plugin.js

config.entities_latin = true;

//是否转换一些特殊字符为ASCII字符 如"This is Chinese: 汉语."转换为"This is Chinese: 汉语." plugins/entities/plugin.js

config.entities_processNumerical = false;

//添加新组件

config.extraPlugins = 'myplugin'; //非默认 仅示例

//使用搜索时的高亮色 plugins/find/plugin.js

config.find_highlight = {

element : 'span',

styles : { 'background-color' : '#ff0', 'color' : '#00f' }

};

//默认的字体名 plugins/font/plugin.js

config.font_defaultLabel = 'Arial';

//字体编辑时的字符集 可以添加常用的中文字符:宋体、楷体、黑体等 plugins/font/plugin.js

config.font_names = 'Arial;Times New Roman;Verdana';

//文字的默认式样 plugins/font/plugin.js

config.font_style = {

element : 'span',

styles : { 'font-family' : '#(family)' },

overrides : [ { element : 'font', attributes : { 'face' : null } } ]

};

//字体默认大小 plugins/font/plugin.js

config.fontSize_defaultLabel = '12px';

//字体编辑时可选的字体大小 plugins/font/plugin.js

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'

//设置字体大小时 使用的式样 plugins/font/plugin.js

config.fontSize_style = {

element : 'span',

styles : { 'font-size' : '#(size)' },

overrides : [ { element : 'font', attributes : { 'size' : null } } ]

};

//是否强制复制来的内容去除格式 plugins/pastetext/plugin.js

config.forcePasteAsPlainText =false //不去除

//是否强制用“”来代替“”plugins/htmldataprocessor/plugin.js

config.forceSimpleAmpersand = false;

//对address标签进行格式化 plugins/format/plugin.js

config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };

//对DIV标签自动进行格式化 plugins/format/plugin.js

config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };

//对H1标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };

//对H2标签自动进行格式化 plugins/format/plugin.js

config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };

//对H3标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } };

php程序员之家

//对H4标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } };

//对H5标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } };

//对H6标签自动进行格式化 plugins/format/plugin.js

config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } };

//对P标签自动进行格式化 plugins/format/plugin.js

config.format_p = { element : 'p', attributes : { class : 'normalPara' } };

php程序员之家

//对PRE标签自动进行格式化 plugins/format/plugin.js

config.format_pre = { element : 'pre', attributes : { class : 'code' } };

//用分号分隔的标签名字 在工具栏上显示 plugins/format/plugin.js

config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';

//是否使用完整的html编辑模式 如使用,其源码将包含:htmlbody/body/html等标签

config.fullPage = false;

//是否忽略段落中的空字符 若不忽略 则字符将以“”表示 plugins/wysiwygarea/plugin.js

config.ignoreEmptyParagraph = true;

//在清除图片属性框中的链接属性时 是否同时清除两边的a标签 plugins/image/plugin.js

config.image_removeLinkByEmptyURL = true;

//一组用逗号分隔的标签名称,显示在左下角的层次嵌套中 plugins/menu/plugin.js.

config.menu_groups ='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea';

//显示子菜单时的延迟,单位:ms plugins/menu/plugin.js

config.menu_subMenuDelay = 400;

//当执行“新建”命令时,编辑器中的内容 plugins/newpage/plugin.js

config.newpage_html = '';

//当从word里复制文字进来时,是否进行文字的格式化去除 plugins/pastefromword/plugin.js

config.pasteFromWordIgnoreFontFace = true; //默认为忽略格式

//是否使用h1h2等标签修饰或者代替从word文档中粘贴过来的内容 plugins/pastefromword/plugin.js

config.pasteFromWordKeepsStructure = false;

//从word中粘贴内容时是否移除格式 plugins/pastefromword/plugin.js

config.pasteFromWordRemoveStyle = false;

//对应后台语言的类型来对输出的HTML内容进行格式化,默认为空

config.protectedSource.push( /\?[\s\S]*?\?/g ); // PHP Code

config.protectedSource.push( //g ); // ASP Code

config.protectedSource.push( /(]+[\s|\S]*?\/asp:[^\]+)|(]+\/)/gi ); // ASP.Net Code

//当输入:shift+Enter时插入的标签

config.shiftEnterMode = CKEDITOR.ENTER_P; //可选:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV

//可选的表情替代字符 plugins/smiley/plugin.js.

config.smiley_descriptions = [

':)', ':(', ';)', ':D', ':/', ':P',

'', '', '', '', '', '',

'', ';(', '', '', '', '',

'', ':kiss', '' ];

//对应的表情图片 plugins/smiley/plugin.js

config.smiley_images = [

'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif',

'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif',

'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif',

'broken_heart.gif','kiss.gif','envelope.gif'];

//表情的地址 plugins/smiley/plugin.js

config.smiley_path = 'plugins/smiley/images/';

关于区块链greek和区块链的未来的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

标签: #区块链greek

  • 评论列表

留言评论