我如何计算javascript网页上存在的ckeditor实例?

发布于 2024-11-07 08:44:28 字数 52 浏览 3 评论 0原文

我如何计算javascript网页上存在的ckeditor实例?谁能给我看一下示例代码吗?

How i can count the instance of ckeditor exist on webpage in javascript ? can anyone show me sample code for that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝情姑娘 2024-11-14 08:44:28
function getNumberOfInstances(){
    var x = 0; // x is the number of instances
    for(var instances in CKEDITOR.instances){
        x ++;
    }
    return x;
}
function getNumberOfInstances(){
    var x = 0; // x is the number of instances
    for(var instances in CKEDITOR.instances){
        x ++;
    }
    return x;
}
兰花执着 2024-11-14 08:44:28

只需手动执行即可,可能有一种简单的方法可以执行此操作。这是一个简单的想法。

尝试一下

例如

var total_ck = new array();

var oEditor1 = FCKeditorAPI.GetInstance('field1');//instance 1

total_ck.push("field1"); 

var oEditor2 = FCKeditorAPI.GetInstance('field2');//instance 2
total_ck.push("field2");

var oEditor3 = FCKeditorAPI.GetInstance('field3');//instance 3
total_ck.push("field3");

var numberof_fck = total_ck.length;

alert(numberof_fck );

Just do it manually,There may be an easy way to do it . It is simple idea.

try it

for example

var total_ck = new array();

var oEditor1 = FCKeditorAPI.GetInstance('field1');//instance 1

total_ck.push("field1"); 

var oEditor2 = FCKeditorAPI.GetInstance('field2');//instance 2
total_ck.push("field2");

var oEditor3 = FCKeditorAPI.GetInstance('field3');//instance 3
total_ck.push("field3");

var numberof_fck = total_ck.length;

alert(numberof_fck );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文