【发布时间】:2021-04-24 01:51:12
【问题描述】:
我看到CKeditor 5 的“免费”版本仅限于“5 个活跃用户”:CKeditor pricing plans;
有没有办法知道我的所有应用程序中有多少个实例?
【问题讨论】:
标签: javascript jquery asp.net-mvc-5 ckeditor5
我看到CKeditor 5 的“免费”版本仅限于“5 个活跃用户”:CKeditor pricing plans;
有没有办法知道我的所有应用程序中有多少个实例?
【问题讨论】:
标签: javascript jquery asp.net-mvc-5 ckeditor5
你可能会得到这样的计数:
var instanceCount = 0;
for(var instances in CKEDITOR.instances){
instanceCount++;
}
【讨论】:
Uncaught ReferenceError: CKEDITOR is not defined ,我认为你的解决方案只适用于以前版本的 CKeditor,无论如何谢谢你。