按照慣例,先來段廢話:CKEditor是新一代的FCKeditor,是一個重新開發(fā)的版本。CKEditor是全球最優(yōu)秀的網(wǎng)頁在線文字編輯器之一,因其驚人的性能與可擴(kuò)展性而廣泛的被運(yùn)用于各大網(wǎng)站。
從官網(wǎng)下載ckeditor,我下載的是ckeditor_3.0.2。CKEditor與原來的FCKeditor有太大的不同了,作為開發(fā)人員,在做自己的博客的時候總是需要貼代碼的,只好給它先做一個插入代碼的插件了。高亮代碼用的是"SyntaxHighlighter"。
1、在"ckeditor\plugins\"目錄下新建一個"insertcode"目錄,然后在"insertcode"目錄下新建一個"plugin.js",輸入以下代碼:
復(fù)制代碼 代碼如下:
CKEDITOR.plugins.add('insertcode', {
requires: ['dialog'],
init: function(a){
var b = a.addCommand('insertcode', new CKEDITOR.dialogCommand('insertcode'));
a.ui.addButton('insertcode', {
label: a.lang.insertcode.toolbar,
command: 'insertcode',
icon: this.path + 'images/code.jpg'
});
CKEDITOR.dialog.add('insertcode', this.path + 'dialogs/insertcode.js');
}
});
2、增加"images"目錄,放入一個"code.jpg"的圖片,當(dāng)然圖片可以從google找一個,16*16大小的就好了。
3、增加"dialogs"目錄,新建一個"insertcode.js",輸入如下代碼:
insertcode.js
復(fù)制代碼 代碼如下:
CKEDITOR.dialog.add('insertcode', function(editor){
var escape = function(value){
return value;
};
return {
title: 'Insert Code Dialog',
resizable: CKEDITOR.DIALOG_RESIZE_BOTH,
minWidth: 720,
minHeight: 480,
contents: [{
id: 'cb',
name: 'cb',
label: 'cb',
title: 'cb',
elements: [{
type: 'select',
label: 'Language',
id: 'lang',
required: true,
'default': 'csharp',
items: [['ActionScript3', 'as3'], ['Bash/shell', 'bash'], ['C#', 'csharp'], ['C++', 'cpp'], ['CSS', 'css'], ['Delphi', 'delphi'], ['Diff', 'diff'], ['Groovy', 'groovy'], ['Html', 'xhtml'], ['JavaScript', 'js'], ['Java', 'java'], ['JavaFX', 'jfx'], ['Perl', 'perl'], ['PHP', 'php'], ['Plain Text', 'plain'], ['PowerShell', 'ps'], ['Python', 'py'], ['Ruby', 'rails'], ['Scala', 'scala'], ['SQL', 'sql'], ['Visual Basic', 'vb'], ['XML', 'xml']]
}, {
type: 'textarea',
style: 'width:700px;height:420px',
label: 'Code',
id: 'code',
rows: 31,
'default': ''
}]
}],
onOk: function(){
code = this.getValueOf('cb', 'code');
lang = this.getValueOf('cb', 'lang');
html = '' + escape(code) + '';
editor.insertHtml("pre class=\"brush:" + lang + ";\">" + html + "/pre>");
},
onLoad: function(){
}
};
});
我是用"syntaxhighlighter"來做代碼高亮的,如果你不喜歡它也可以換成其它的。
4、接下來就是把插件加入到CKEditor里了,我是直接修改CKEditor插件的核心文件的,因?yàn)槲沂前选安迦氪a”功能做為一個編輯器必要的功能來使用的。
找到ckeditor目錄下的"ckeditor.js",這里的代碼是經(jīng)過壓縮的,我們用CKEditor原來的about插件做參考。查找"about",找到"fullPage:false,height:200,plugins:'about,basicstyles",我們在"about"后面增加",insertcode",這里就變成"plugins:'about,insertcode,basicstyles"。
繼續(xù)查找"about",找到"j.add('about',{init:function(l){var m=l.addCommand('about',new a.dialogCommand('about'));m.modes={wysiwyg:1,source:1};m.canUndo=false;l.ui.addButton('About',{label:l.lang.about.title,command:'about'});a.dialog.add('about',this.path+'dialogs/about.js');}});",我們在這個分號后面增加"j.add('insertcode', {requires: ['dialog'],init: function(l){l.addCommand('insertcode', new a.dialogCommand('insertcode'));l.ui.addButton('insertcode', {label: l.lang.insertcode.toolbar,command: 'insertcode',icon: this.path + 'images/code.jpg'});a.dialog.add('insertcode', this.path + 'dialogs/insertcode.js');}});"。
接下來查找"i.toolbar_Basic=",這就是CKEditor默認(rèn)的工具欄了,我們在這里加上",insertcode",你可以加在你想要的位置。比如我的"['Maximize','ShowBlocks','-','insertcode']"。
5、進(jìn)入"ckeditor\lang",分別在"en.js","zh.js","zh-cn.js"中增加",insertcode:'Insert Code'",",insertcode:'插入代碼'",",insertcode:'插入代碼'"。
6、對CKEditor的修改已經(jīng)OK了,還有最后一步就是在你需要高亮代碼的頁面引用:
syntaxhighlighter
復(fù)制代碼 代碼如下:
link type="text/css" rel="stylesheet" />
link type="text/css" rel="stylesheet" />
script type="text/javascript" src="http://blog.moozi.net/wp-includes/js/syntaxhighlighter/shCore.js">/script>
script type="text/javascript" src="http://blog.moozi.net/wp-includes/js/syntaxhighlighter/shBrushes.js">/script>
這四個文件在syntaxhighlighter的下載包里都有,最后,還在頁面增加這段JS:
復(fù)制代碼 代碼如下:
script type="text/javascript">
SyntaxHighlighter.config.clipboardSwf = 'http://img.jb51.net/js/syntaxhighlighter/clipboard.swf';
SyntaxHighlighter.all();
/script>
解壓后"syntaxhighlighter_2.1.364\scripts"目錄下有"shBrushes.js"是我把syntaxhighlighter所有的高亮代碼都添加到一個js文件中,減少http請求。
CKEditor的"插入代碼"插件就OK了。
評價功能即可插入代碼進(jìn)行高亮顯示。同時也修改了表情插件,現(xiàn)在使用的是QQ的表情包。有需要這個修改方法的朋友請留言,我會把QQ表情的插件制作方法貼出來。
下載地址:https://www.jb51.net/codes/24883.html
您可能感興趣的文章:- CKEditor擴(kuò)展插件:自動排版功能autoformat插件實(shí)現(xiàn)方法詳解
- FCKeditor 插件開發(fā) 示例(詳細(xì)版本)
- ckeditor自定義插件使用方法詳解
- 添加FCKeditor插件需要注意的地方
- ckeditor插件開發(fā)簡單實(shí)例
- fckeditor 插件實(shí)例 制作步驟
- autogrow 讓FCKeditor高度隨內(nèi)容增加的插件
- CKEditor中加入syntaxhighlighter代碼高亮插件
- FCKeditor 和 SyntaxHighlighter 代碼高亮插件的整合
- ckeditor一鍵排版功能實(shí)現(xiàn)方法分析