fckconfig.js 中修改
添加
复制代码 代码如下:
FCKConfig.LineHeights = '100%;150%;200%;250%;300%' ;
'Size' :
{
Element : 'span',
Styles : { 'font-size' : '#("Size","fontSize")' },
Overrides : [ { Element : 'font', Attributes : { 'size' : null } } ]
},
这个下面添加
复制代码 代码如下:
'LineHeight' :
{
Element : 'span',
Styles : { 'line-height' : '#("Font")' },
Overrides : [ { Element : 'font', Attributes : { 'size' : null } } ]
},
FCKConfig.ToolbarSets 里添加
'LineHeight'
开启插件
FCKConfig.Plugins.Add( 'LineHeight','zh-cn' ) ;
注意'LineHeight' 这个字母的大小写。
在fckeditor\editor\plugins文件夹下上传LineHeight目录
在fckeditor\editor\js 上传fckeditorcode_gecko.js和fckeditorcode_ie.js
这两个js 主要是解决跳出 未知工具栏项目
您可能感兴趣的文章:- 手把手教你 CKEDITOR 4 扩展插件制作
- FCKeditor .NET的配置、扩展与安全性经验交流
- FCKeditor 插件开发 示例(详细版本)
- ckeditor自定义插件使用方法详解
- CKEditor 附插入代码的插件
- 添加FCKeditor插件需要注意的地方
- ckeditor插件开发简单实例
- fckeditor 插件实例 制作步骤
- fckeditor 插件开发参考文档
- CKEditor中加入syntaxhighlighter代码高亮插件
- CKEDITOR二次开发之插件开发方法
- CKEditor扩展插件:自动排版功能autoformat插件实现方法详解