花了几天时间精装了以下fckeditor,使速度达到“飞”的速度。
演示:http://www.94qing.com/fckeditor
精装内容如下:

引用内容
FCKeditor 2.6.4 精简版修改内容如下:
删除模板、打印、保存、拼写检查
删除页面属性
删除右键菜单功能
删除显示区块、全屏功能
删除语言文件仅保留简体中文并精简语言包
删除表单功能
删除工具栏的折叠功能
删除文件上传和浏览服务器功能
删除特殊字符功能
删除选择更多颜色功能
删除除默认意外的两个模板
删除一些一般不会更改的配置选项及其连带功能
删除N多判断
优化显示工具栏使在各个浏览器下达到视觉统一
精简链接、图片、FLASH插入功能,确保最精简的视觉和最快捷的操作
多个细节调整
删除插件功能
增加代码高亮功能
详细看附件里面的说明文件。
调用方法:
asp:

程序代码
<!-- #INCLUDE file="FCKeditor/FCKeditor.asp" -->
<form action="" method="post" target="_blank">
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "400"
oFCKeditor.Value = "1234123123"
oFCKeditor.Create "Content"
%>
<input type="submit" value="Submit" />
</form>
php:

程序代码
<?php include('fckeditor.php') ;
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = dirname($sBasePath).'/';
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = '';
$oFCKeditor->Create(); ?>
js:

程序代码
<script src="FCKeditor/FCKeditor.js"></script>
<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'Content' ) ;
oFCKeditor.BasePath = 'FCKeditor/' ;
oFCKeditor.ToolbarSet = 'Basic' ;
oFCKeditor.Width = '100%' ;
oFCKeditor.Height = '400' ;
oFCKeditor.Value = '' ;
oFCKeditor.Create() ;
</script>
代码高亮使用方法:在页面添加

程序代码
<link rel="stylesheet" href="fckeditor/fck_codes.css" type="text/css"/>
<script language="javascript">
function copyIdText(id) {
var id = document.getElementById(id);
copy(id.innerText, id)
}
function copy(txt, obj) {
if (window.clipboardData) {
window.clipboardData.clearData();
window.clipboardData.setData("Text", txt);
alert("复制成功!");
if (obj.style.display != 'none') {
var rng = document.body.createTextRange();
rng.moveToElemaaentText(obj);
rng.scrollIntoView();
rng.select();
rng.collapse(false)
}
} else {
alert("请选中文本,使用 Ctrl+C 复制!")
}
}
</script>
点击下载此文件