ckeditor使用教程?
一、使用方法:
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="ckeditor">
</textarea>
如果是ASP.NET环境,也可用服务器端控件<TextBox>
<asp:TextBoxID="tbContent" runat="server"TextMode="MultiLine" class="ckeditor">
</asp:TextBox>
注意在控件中加上 class="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';
二、 一些使用技巧1、在页面中即时设置编辑器<script type="text/javascript">//示例1:设置工具栏为基本工具栏,高度为70CKEDITOR.replace('<%=tbLink.ClientID.Replace("_","$") %>',{ toolbar:'Basic', height:70 });//示例2:工具栏为自定义类型CKEDITOR.replace( 'editor1',{toolbar :[//加粗 斜体, 下划线 穿过线 下标字 上标字['Bold','Italic','Underline','Strike','Subscript','Superscript'],//数字列表 实体列表 减小缩进 增大缩进['NumberedList','BulletedList','-','Outdent','Indent'],//左对齐 居中对齐 右对齐 两端对齐['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],//超链接 取消超链接 锚点['Link','Unlink','Anchor'],//图片 flash 表格 水平线 表情 特殊字符 分页符['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],'/',//样式 格式 字体 字体大小['Styles','Format','Font','FontSize'],//文本颜色 背景颜色['TextColor','BGColor'],//全屏 显示区块['Maximize', 'ShowBlocks','-']]});</script> 三、精简ckeditor在部署到Web服务器上时,下列文件夹和文件都可以删除:/_samples :示例文件夹;/_source :未压缩源程序;/lang文件夹下除 zh-cn.js、en.js 以外的文件(也可以根据需要保留其他语言文件);根目录下的 changes.html(更新列表),install.html(安装指向),license.html(使用许可);Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有