对于CK Editor版本4.4.6,是否有等效的getIndex()?

时间:2017-09-22 21:31:26

标签: ckeditor

我知道方法getIndex()是在4.5版本中引入的,但我们目前无法更新我们的CKEditor版本,因为它与企业软件包相关联。有没有办法模仿4.5版之前的CKEditor版本中的getIndex()函数?

1 个答案:

答案 0 :(得分:0)

如果您指的是CKEDITOR.tools.getIndex(),则可以使用JavaScript自己的Array.prototype.findIndex()(不适用于Internet Explorer):

function isBigEnough(element) {
  return element >= 15;
}

[12, 5, 8, 130, 44].findIndex(isBigEnough); 
// index of 4th element in the Array is returned,
// so this will result in '3'