多个不同高度的CKEditor
我需要在一个页面中有 10 个 CKEditors,全部具有相同的自定义配置,但其中 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 实例。
I need to have 10 CKEditors in a page, all with the same customized configurations, but 9 of them with height 100, and one with size 250. This is how I initialize the CKEditors now:
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
});
With this code all I see are text boxes, not the CKEditor instances.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代表OP发布的解决方案:
代码缺少逗号。
Solution posted on behalf of the OP:
The code was missing a comma.