为ckeditor添加行距的功能

来源:互联网 发布:上门修手机 知乎 编辑:程序博客网 时间:2024/06/05 00:11

发现CKeditor没有设置行距的功能,想想这么重要的功能肯定有相应的插件,于是百度一下,倒是有不少的教程,所以记录一下,以备后用,

1.下载ckeditor的行距插件包 lineheight

2.解压到ckeditor/plugins目录下

3.修改ckeditor目录下的 config.js文件,在其中添加以下的代码

config.extraPlugins += (config.extraPlugins ? ',lineheight' : 'lineheight');    CKEDITOR.config.toolbar_Full =    [        { name: 'document',        items : [ 'Source','-','Save','NewPage','DocProps','Preview','Print','-','Templates' ] },        { name: 'clipboard',    items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },        { name: 'editing',        items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt' ] },        { name: 'forms',        items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] },        '/',        { name: 'basicstyles',    items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },        { name: 'paragraph',    items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },        { name: 'links',        items : [ 'Link','Unlink','Anchor' ] },        { name: 'insert',        items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] },        '/',        { name: 'styles',        items : [ 'Styles','Format','Font','FontSize','lineheight' ] },        { name: 'colors',        items : [ 'TextColor','BGColor' ] },        { name: 'tools',        items : [ 'Maximize', 'ShowBlocks','-','About' ] }    ];

4.现在就ok了,行距功能就有了。

 

 

原创粉丝点击