Home  >  Article  >  Backend Development  >  javascript - UEditor editor character limit problem

javascript - UEditor editor character limit problem

WBOY
WBOYOriginal
2016-09-21 14:12:591222browse

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

Reply content:

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

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.
javascript - UEditor editor character limit problem

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn