javascript - UEditor editor character limit problem

WBOY
Release: 2016-09-21 14:12:59
Original
1194 people have browsed it

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>
Copy after login

,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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!