如何在Linux下使用网页编辑器CKEditor
更新日期:2015-02-07 00:34 作者:w8系统下载 来源:w8xitong.com
CKEditor通常所指的就是fCKEDITOR,是优秀的网页编辑器,能够支持多种编程语言,使用的人越来越多,那么Linux下要如何使用网页编辑器CKEditor呢?下面小编就给大家介绍下Linux使用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:TextBox ID=“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’;
这将配合:
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’],
‘/’,
系统推荐
电脑公司 Ghost W8.1 X64 极速体验版 V2015.07
电脑公司Ghost Win8.1 X64位 推荐装机版v2017.06(绝对激活)
- 番茄花园 Ghost W8.1 X64 正式装机版 2016.02 01-30
- 深度技术Ghost Win8.1 x64 增强装机版2017V06(无需激活) 05-21
- 新萝卜家园Ghost Win8.1 X64 绿色装机版2017v08(永久激活) 07-22
- 中关村 GHOST_W8.1_32位 快速装机版 v2014.12 11-26
- 番茄花园Whost W8.1 32位 装机版 2016.08(自动激活) 07-28
- 新萝卜家园Ghost Win8.1 x64位 家庭装机版v201806(激活版) 05-26
- 电脑公司 GHOST W8.1 64位 装机特别版 2015.02 01-30
- 电脑公司Ghost Win8.1 64位 快速装机版v2018.09月(绝对激活) 08-27
- 系统之家Ghost Win8.1 (32位) 收藏装机版V2017.12月(免激活) 11-30
- 番茄花园Ghost Win8.1x86 电脑城装机版v2021.06月(自动激活) 05-11
- 电脑公司Ghost Win8.1 X64位 极速通用版v201705(免激活) 05-10
- 新萝卜家园Ghost Win8.1 X64 多驱动装机版V2020年04月(自动激活) 03-18
- 系统之家Ghost Win8.1 64位 经典装机版2018V05(完美激活) 04-30
- 深度技术Ghost Win8.1 (X32) 装机装机版V201806(完美激活) 05-26
- 番茄花园Ghost W8.1 32位 增强装机版 2015.12 11-27
- 1 系统之家Ghost Win8.1 x64 推荐装机版2020年06月(无需激活)
- 2 番茄花园Ghost Win8.1x86 完美装机版v202101(绝对激活)
- 3 番茄花园Win8.1 大神2021新年春节版64位
- 4 深度技术Win8.1 完整装机版 2019.11(32位)
- 5 电脑公司Ghost Win8.1 X64 稳定装机版v2017.07月(无需激活)
- 6 雨林木风 Ghost W8.1 64位 装机版 2016.07
- 7 Ghost W8.1 32位 装机版 2016.06
- 8 新萝卜家园Ghost Win8.1 x64位 快速装机版V2019年08月(无需激活)
- 9 中关村 GHOST W8.1 X64 安全装机版 2015.06
- 10 大地系统 Ghost W8.1 32位 装机版 2016.05标准
- 1 电脑公司Ghost W8.1 x32 纯净版(免激活)2016.01
- 2 电脑公司Ghost Win8.1x86 完美纯净版V201912(无需激活)
- 3 深度技术Ghost Win8.1 X32 纯净版V2017年04月(绝对激活)
- 4 电脑公司Ghost Win8.1 X64位 办公纯净版V201710(无需激活)
- 5 新萝卜家园Window8.1 32位 尝鲜纯净版 v2020.04
- 6 雨林木风Win8.1 Ghost 64位 老机纯净版 v2020.02
- 7 番茄花园官网Ghost W8.132位 万能纯净版 2016.07
- 8 电脑公司Ghost Win8.1 64位 经典纯净版v2021.01月(完美激活)
- 9 新萝卜家园Ghost Win8.1 x64位 精选纯净版v201808(绝对激活)
- 10 电脑公司Ghost Win8.1x86 好用纯净版2021.08(绝对激活)
- 1 宏碁(acer)Ghost W8.1 32位 专用系统 V2016
- 2 联想笔记本 Ghost W8.1 32位 装机版 2016.06
- 3 华硕 GHOST W8.1 64位 极速装机版 2015.09
- 4 (asus华硕)GHOST W8.1 64位 特别版 2016
- 5 【2014.09】惠普专用(32位)GhostW8.1x86专业快速装机版系统
- 6 (toshiba东芝)GHOST W8.1 64位 旗舰版 2016
- 7 (dell戴尔)GHOST W8.1 64位 修正版 2016
- 8 东芝笔记本 Ghost W8.1 64位 装机版 2016.05
- 9 宏碁笔记本 Ghost W8.1 32位 装机版 2016.05
- 10 联想笔记本 GHOST W8.1 64位 免激活专业版 2014.12