ckeditor上的临时禁用按钮

时间:2014-05-07 11:03:44

标签: ckeditor

如何在选择图像时启用或禁用CKEditor的段落按钮。我不想完全删除它。 我目前正在使用ckeditor版本4.4

1 个答案:

答案 0 :(得分:4)

使用editor.getCommand() + CKEDITOR.command APIenabledisable):

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();
    }
} );