在可信的div中保持光标位置

时间:2013-04-24 14:15:32

标签: javascript dom

首先,这类似于:

Editing Iframe Content in IE - problem in maintaining text selection

How to get caret position within contenteditable div with html child elements?

基本上,我正在写一些类似于推特中的新推文编辑器。在设置div的{​​{1}}内,我正在解析文本。当我发现我认为是URL时,我将该文本删除并输入div内的contentEditable标记(例如,<a>的输入消息变为go to www.google.com。但是,插入位置当我这样做时,我迷失了。

在其他SO帖子中使用@Tim-Down的建议只有在您不编辑DOM时才会起作用(正如他所说)。我正在编辑DOM,因此插入位置丢失了。

是否可以(理想情况下不使用引用的Rangy库)通过处理当前代码来实现此目的。

我目前的代码(来自其他SO帖子):

Go to <a href='..'>www.google.com</a>

我这样使用它:

var saveSelection, restoreSelection;
if (window.getSelection) {
    // IE 9 and non-IE
    saveSelection = function(win) {
        var sel = win.getSelection(), ranges = [];
        if (sel.rangeCount) {
            for (var i = 0, len = sel.rangeCount; i < len; ++i) {
                ranges.push(sel.getRangeAt(i));
            }
        }
        return ranges;
    };

    restoreSelection = function(win, savedSelection) {
        var sel = win.getSelection();
        sel.removeAllRanges();
        for (var i = 0, len = savedSelection.length; i < len; ++i) {
            sel.addRange(savedSelection[i]);
        }
    };
} else if (document.selection && document.selection.createRange) {
    // IE <= 8
    saveSelection = function(win) {
        var sel = win.document.selection;
        return (sel.type != "None") ? sel.createRange() : null;
    };

    restoreSelection = function(win, savedSelection) {
        if (savedSelection) {
            savedSelection.select();
        }
    };
}

1 个答案:

答案 0 :(得分:4)

如果用户看到的文本保持不变(您的问题似乎意味着这种情况),您可以使用基于字符偏移的解决方案。我在Stack Overflow的其他地方发布了一些代码:

https://stackoverflow.com/a/13950376/96100

我最近也回答了一个相关的问题:

jQuery: Convert text URL to link as typing