我需要在一个页面中有10个CKEditor,所有这些都具有相同的自定义配置,但其中9个高度为100,另一个大小为250.这就是我现在初始化CKEditors的方法:
for(var i = 1; i < 9; i++)
CKEDITOR.replace('editor' + i, {
customConfig : 'my_configs/small_box.js'
});
CKEDITOR.replace('editor0', {
customConfig : 'my_configs/small_box.js'
height: 250
});
使用此代码,我看到的只是文本框,而不是CKEditor实例。
答案 0 :(得分:0)
代表OP发布的解决方案:
代码缺少逗号。