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

How can I force CKEditor to launch in full screen?

CKEditor 允许您单击工具栏按钮 "Maximize" 文本区域。我想在页面加载时自动执行此操作。感谢您的帮助。

请尝试以下代码:

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