如何在CKEDITOR中动态更改插件设置?

时间:2016-01-05 08:10:34

标签: javascript ckeditor word-count

如何在创建CKEDITOR实例时动态更改插件的设置?

我在自定义config.js中写道:

config.wordcount = {
    // Whether or not you want to show the Word Count
    showWordCount: false,
    // Whether or not you want to show the Char Count
    showCharCount: true
};

我想要做的是将maxCharCount设置为某个东西,具体取决于CKEDITOR实例。

有没有简单的方法来实现这一目标?

1 个答案:

答案 0 :(得分:2)

找到解决方案:

CKEDITOR.replace('field', {
    wordcount: {'showWordCount': false,
                'showParagraphs': false,
                'showCharCount': true,
                'maxCharCount': 100
            }
});