在ContentEditable <div> </div>的focus()之后移动插入位置

时间:2012-09-06 17:23:12

标签: javascript contenteditable rich-text-editor

我正在尝试用JavaScript创建一个非常基本的富文本编辑器,但我遇到了选择问题。所以基本上,因为它是contentEditable&lt; div&gt;,所以每当用户从网页粘贴预先格式化的文本时,格式就不会被剥离。

一个容易打破的黑客就是把焦点放在&lt; textarea&gt;上。在按下Ctrl + V时,文本将被粘贴在那里,然后onkeyup,将焦点返回到&lt; div&gt;,复制内容并删除进入&lt; textarea&gt;的任何内容。

这很容易,但是当我将焦点重新放回到contentEditable&amp ;; t; div&gt;时,插入位置在开头而不是在粘贴之后。我不太了解选择,还有什么可以搞清楚,所以我很感激一些帮助。这是我的代码:

// Helpers to keep track of the length of the thing we paste, the cursor position
// and a temporary random number so we can mark the position.
editor_stuff = 
{
    cursor_position: 0,
    paste_length: 0,
    temp_rand: 0,
}

// On key up (for the textarea).
document.getElementById("backup_editor").onkeyup = function() 
{ 
    var main_editor     =  document.getElementById("question_editor");
    var backup_editor   =  document.getElementById("backup_editor");
    var marker_position = main_editor.innerHTML.search(editor_stuff.temp_rand);

    // Replace the "marker" with the .value of the <textarea>
    main_editor.innerHTML = main_editor.innerHTML.replace(editor_stuff.temp_rand, backup_editor.value);

    backup_editor.value = "";

    main_editor.focus();
}

// On key down (for the contentEditable DIV).
document.getElementById("question_editor").onkeydown = function(event)
{
    key = event;

    // Grab control + V end handle paste so "plain text" is pasted and
    // not formatted text. This is easy to break with Edit -> Paste or
    // Right click -> Paste.

    if
    (
        (key.keyCode == 86 || key.charCode == 86) &&                   // "V".
        (key.keyCode == 17 || key.charCode == 17 || key.ctrlKey)       // "Ctrl"
    )
    {
        // Create a random number marker at the place where we paste.
        editor_stuff.temp_rand = Math.floor((Math.random() * 99999999));

        document.getElementById("question_editor").textContent +=  editor_stuff.temp_rand;
        document.getElementById("backup_editor").focus();
    }
}

所以我的想法是将光标位置(整数)存储在我的辅助数组(editor_stuff.cursor_position)中。

N.B。我一整天都在寻找其他答案,不能让他们中的任何一个为我工作。

1 个答案:

答案 0 :(得分:5)

这是一个在插入位置插入文本的函数:

演示:http://jsfiddle.net/timdown/Yuft3/2/

代码:

function pasteTextAtCaret(text) {
    var sel, range;
    if (window.getSelection) {
        // IE9 and non-IE
        sel = window.getSelection();
        if (sel.getRangeAt && sel.rangeCount) {
            range = sel.getRangeAt(0);
            range.deleteContents();

            var textNode = document.createTextNode(text);
            range.insertNode(textNode);

            // Preserve the selection
            range = range.cloneRange();
            range.setStartAfter(textNode);
            range.collapse(true);
            sel.removeAllRanges();
            sel.addRange(range);
        }
    } else if (document.selection && document.selection.type != "Control") {
        // IE < 9
        document.selection.createRange().text = text;
    }
}