当我安装共享空间插件时,它会起作用。当我安装wordcount插件时,它会起作用。但是当我两者都想要时,字数统计功能不起作用。 谢谢您的帮助。
<script type="text/javascript">
CKEDITOR.replace('texte-nouvelle',{
removePlugins: 'resize',
width : '600px',
height : '1200px',
toolbar : 'MyToolbar_user',
wordcount: {
showParagraphs: false,
showWordCount: false,
showCharCount: true,
countSpacesAsChars:true,
countHTML:false,
maxWordCount: -1,
maxCharCount: 7000
},
extraPlugins: 'sharedspace',
sharedSpaces: {
// Configure the editor instance to place the toolbar in the div id='top'.
top: 'top',
}});
</script>