如何强制CKEditor以全屏模式启动?

时间:2018-06-25 11:46:06

标签: php ckeditor

CKEditor可让您单击工具栏按钮以“最大化”文本区域。我想在页面加载时自动执行此操作。谢谢您的帮助。

1 个答案:

答案 0 :(得分:0)

请尝试以下代码:

var editor = CKEDITOR.replace( 'editor1', { /*Editor instance configuration goes here*/ });
editor.on( 'instanceReady', function(event){
    if(event.editor.getCommand( 'maximize' ).state == CKEDITOR.TRISTATE_OFF);//ckeck if maximize is off
        event.editor.execCommand( 'maximize');
});