从 CKEditor 4 开始,您需要 Justify 插件。
- 在此处下载 Justify 插件
- 将其粘贴到 ckeditor/plugins/
- 将插件添加到您的 ckeditor。
这是javascript代码:
$(function() {
CKEDITOR.config.extraPlugins = 'justify';
});
你不用多做,Justify插件会自动添加到paragraph
toolbarGroup
编辑
By alignment
,我以为你在谈论right|center|left
对齐。
在这里,对于 h 标签,我们有这些组:
if ( element.is( 'h1', 'h2', 'h3' ) || element.getAttribute( 'id' ) == 'taglist' ) {
editor.on( 'configLoaded', function() {
editor.config.removePlugins = 'colorbutton,find,flash,font,' +
'forms,iframe,image,newpage,removeformat,scayt,' +
'smiley,specialchar,stylescombo,templates,wsc';
editor.config.toolbarGroups = [
{ name: 'editing', groups: [ 'basicstyles', 'links' ] },
{ name: 'undo' },
{ name: 'clipboard', groups: [ 'selection', 'clipboard' ] },
{ name: 'about' }
];
});
}
['basicstyles', 'links', 'undo', 'selection', 'clipboard', 'about']
,没有align
组,只需添加它。
安装新的 CKEditor 后您无需修改任何内容,该组已经在 inline 基本配置中