如何在选择图像时启用或禁用CKEditor的段落按钮。我不想完全删除它。 我目前正在使用ckeditor版本4.4
答案 0 :(得分:4)
使用editor.getCommand()
+ CKEDITOR.command
API(enable
和disable
):
editor.getCommand( 'justifyleft' ).disable();
editor.getCommand( 'justifyleft' ).enable();
例如:
CKEDITOR.instances.editor1.on( 'selectionChange', function( evt ) {
var jLeftCommand = this.getCommand( 'justifyleft' ),
jRightCommand = this.getCommand( 'justifyright' );
if ( evt.data.path.lastElement.is( 'img' ) ) {
jLeftCommand.disable();
jRightCommand.disable();
} else {
jLeftCommand.enable();
jRightCommand.enable();
}
} );