0

M ckeditor を使用しています。ワード カウントとスペル チェッカー機能を追加したいと考えています。誰か助けてくれませんか。ワード カウント用のプラグインを既にダウンロードしています。以下は私のコードです。

CKEDITOR.editorConfig = function (config) {
// Define changes to default configuration here. For example:
// config.language = 'fr';`
// config.uiColor = '#AADC6E';
config.extraPlugins = 'onchange, wordcount';
config.minimumChangeMilliseconds = 100;
config.htmlEncodeOutput = false;
config.toolbar_Custom = [
                                    { name: 'styles', items: ['Styles', 'Format'] },
                                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', '-', 'RemoveFormat'] },
                                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Blockquote'] },
                                    { name: 'links', items: ['Link', 'Unlink', 'Anchor'] },

                        ];
config.toolbar_Full.push(['CountSelection']);

};

4

1 に答える 1

1

wordcountこの行を追加してから削除してみてくださいconfig.extraPlugins

config.plugins = 'wordcount';

config.toolbar_Customまた、次の行を配列に追加します。

{ name: 'editing', items: [ 'SpellChecker' ] },

お役に立てれば

于 2013-09-02T14:31:11.397 に答える