博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CKEDITOR 默认最大化
阅读量:6413 次
发布时间:2019-06-23

本文共 521 字,大约阅读时间需要 1 分钟。

 createEditor("newsEditer"); //创建一个editer

//editer 最大化

 CKEDITOR.instances["newsEditer"].on('instanceReady', function (event) {

                var editor = event.editor;
                setTimeout(function () {
                    // Delay bit more if editor is still not ready.
                    if (!editor.element) {
                        setTimeout(arguments.callee, 100);
                        return;
                    }
                    event.removeListener('instanceReady', this.callee);
                    if (editor.name == 'newsEditer') {
                        var command = editor.getCommand('maximize');
                        command.exec();
                    }
                }, 0);
            }, null, null, 9999);

转载于:https://www.cnblogs.com/wlwjc/p/3444999.html

你可能感兴趣的文章
mysql事务
查看>>
Oracle Virtualbox视图切换
查看>>
安装vCenter6.0遇到的问题以及解决方法
查看>>
zabbix调优
查看>>
我的友情链接
查看>>
Godaddy域名如何使用DNSPod做DNS解析
查看>>
linux系统故障
查看>>
H3C 帧中继初级配置(一)
查看>>
git配置sublime text2为默认编辑器
查看>>
remedysla营业时间配置记载
查看>>
网卡接口配置——bonding
查看>>
find 的常用用法
查看>>
初次使用git submodule
查看>>
INPUT[type=file] 的 'value' 属性值在各浏览器中存在差异
查看>>
Python3导入Asprise Ocr报错
查看>>
livy 为 apache Spark 提供REST 接口交互
查看>>
我的友情链接
查看>>
maven 继承聚合依赖属性
查看>>
链式二叉树
查看>>
mysql show processlist命令 详解
查看>>