如何以编程方式在CKEDITOR中选择文本范围?

时间:2010-12-09 17:54:45

标签: javascript selenium ckeditor fckeditor

问题:

我的javascript中有一个CKEditor实例:

var editor = CKEDITOR.instances["id_corpo"];

我需要以编程方式插入一些文本,然后选择一些文本范围。

我已经通过

插入了文字
editor.insertHtml('<h1 id="myheader">This is a foobar header</h1>');

但是我需要通过javascript以编程方式选择(突出显示)“foobar”这个词,以便我可以使用selenium来计算我的CKEditor插件的一些功能测试。

更新1:

我也试过像

这样的东西
var selection = editor.getSelection();
var childs = editor.document.getElementsByTag("p");
selection.selectElement(childs);

但根本不起作用!

我该怎么做?

我认为

selection.selectRange()

可以完成这项工作,但我不知道如何使用它。 那边没有例子:(

4 个答案:

答案 0 :(得分:8)

获取当前选择

var editor = CKEDITOR.instances["id_corpo"];
var sel = editor.getSelection();

将选择更改为当前元素

var element = sel.getStartElement();
sel.selectElement(element);

将范围移至您要选择的文字

var findString = 'foobar';
var ranges = editor.getSelection().getRanges();
var startIndex = element.getHtml().indexOf(findString);
if (startIndex != -1) {
    ranges[0].setStart(element.getFirst(), startIndex);
    ranges[0].setEnd(element.getFirst(), startIndex + findString.length);
    sel.selectRanges([ranges[0]]);
}

答案 1 :(得分:3)

您还可以执行以下操作:

获取当前选择

var selection = editor.getSelection();
var selectedElement = selection.getSelectedElement();

如果未选择任何内容,则创建一个新的paragraf元素

if (!selectedElement)
    selectedElement = new CKEDITOR.dom.element('p');

将您的内容插入元素

selectedElement.setHtml(someHtml);

如果需要,将元素插入dom(它将插入当前位置)

editor.insertElement(selectedElement);

然后选择它

selection.selectElement(selectedElement);

答案 2 :(得分:1)

查看CKEDITOR.dom.selection的selectElement()方法。

http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dom.selection.html

答案 3 :(得分:-1)

在ck编辑器中的光标点插入文本

  • function insertVar(myValue){ CKEDITOR.instances ['editor1']。fire('insertText',myValue);     }

    这对我有用