如何在创建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实例。
有没有简单的方法来实现这一目标?
答案 0 :(得分:2)
找到解决方案:
CKEDITOR.replace('field', {
wordcount: {'showWordCount': false,
'showParagraphs': false,
'showCharCount': true,
'maxCharCount': 100
}
});