您的解决方案在这里
https://github.com/AdamScheller/charwordcount
好的,这是完整的解决方案。
从上面的链接下载 Zip 文件。在右下角给出
在tinymce内的plugins目录中解压zip文件夹。所以现在你应该在你的插件目录中有一个名为 (charwordcount-master) 的目录
然后
只需在初始化编辑器的代码中调用插件即可。我在这里写整个头部
<head>
<meta charset="utf-8">
<title>charwordcount TinyMCE plugin example</title>
<script src="tinymce/tinymce.min.js"></script>
<script>
tinymce.init({
selector: "textarea",
plugins: [
"charwordcount advlist link image lists preview pagebreak",
"searchreplace code insertdatetime nonbreaking",
"table textcolor paste textcolor"
],
charwordcount_include_tags: false, // optional, includes HTML tags and entities (like ) in count; disabled by default;
toolbar1: "preview code | restoredraft undo redo | cut copy paste searchreplace | link unlink image | table | subscript superscript | nonbreaking | outdent indent blockquote | bullist numlist",
toolbar2: "formatselect fontselect fontsizeselect | bold italic underline strikethrough | forecolor backcolor | alignleft aligncenter alignright alignjustify",
menubar: false,
toolbar_items_size: 'small'
});
</script>
</head>
这就是现在您拥有字符和字数统计功能,它将显示在编辑器的状态栏中。它将适用于每个文本区域。
我希望这足够清楚,否则 zip 文件夹中还有一个示例,它将位于新安装的文件夹中
\plugins\charwordcount-master\charwordcount-master\example
如果您有任何问题,请告诉我。这个解决方案将 100% 有效,因为我花了很多时间寻找解决方案。
索拉布·古普塔