Home > Article > Backend Development > javascript - UEditor editor character limit problem
How can I prevent it from displaying in this place? I saw in the file ueditor.config.js that it was commented out. I uncommented it and changed it to no avail. In the file ueditor.config.js Changing the character limit is useless
How can I prevent it from displaying in this place? I saw in the file ueditor.config.js that it was commented out. I uncommented it and changed it to no avail. In the file ueditor.config.js Changing the character limit is useless
In the instance ueditor is the configuration, it is best not to modify it in config.js. After all, it would be bad if it is used in other places, but the word count is needed
<code>var ue = UE.getEditor('editor',{ //关闭字数统计 wordCount:false, //关闭elementPath elementPathEnabled:false, }); </code>
,wordCount: false
Adding this in the config will prevent the one in the lower right corner from being displayed. Just tested it.