我如何计算javascript中网页上存在的ckeditor实例?有谁可以给我看样品代码吗?
答案 0 :(得分:2)
function getNumberOfInstances(){
var x = 0; // x是实例数
for(CKEDITOR.instances中的var实例){x ++;}
retrun x; }
答案 1 :(得分:-2)
手动完成,可能有一种简单的方法。这很简单。
试试吧
例如
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 );