DIV 粘贴插入文本或者其他元素后,移动光标到最新处

Posted flyArmy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DIV 粘贴插入文本或者其他元素后,移动光标到最新处相关的知识,希望对你有一定的参考价值。

此文主要是可编辑div光标位置处理

1:首先 设置一个可编辑的DIV,注意:设置 contenteditable="true" 才可以编辑DIV

 <div id="talkContent" style="resize: none;height:150px;overflow:auto" contenteditable="true"></div>

2:移动光标js方法

//聊天内容框 插入文本或者其他元素后,移动置光标到最新处
function inserthtmlAtCaret(childElement) {
    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 el = document.createElement("div");
            el.appendChild(childElement);
            var frag = document.createDocumentFragment(), node, lastNode;
            while ((node = el.firstChild)) {
                lastNode = frag.appendChild(node);
            }

            range.insertNode(frag);
            if (lastNode) {
                range = range.cloneRange();
                range.setStartAfter(lastNode);
                range.collapse(true);
                sel.removeAllRanges();
                sel.addRange(range);
            }
        }
    }
    else if (document.selection && document.selection.type != "Control") {
        // IE < 9
        //document.selection.createRange().pasteHTML(html);
    }
}

3:从光标现在的位置追加文本,成功后,光标在追加的文本后面

    insertHtmlAtCaret(document.createTextNode(‘这里是要追加的文本’));

4:从光标现在的位置追加元素,成功后,光标在追加的元素后面

  var new_img = document.createElement(‘img‘);
    new_img.setAttribute(‘src‘, ‘这是图片地址‘);
    new_img.style.maxWidth = "200px";
    new_img.style.maxHeight = "120px";
    insertHtmlAtCaret(new_img);

 

以上是关于DIV 粘贴插入文本或者其他元素后,移动光标到最新处的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio:打开其他类或在不同类中粘贴文本后,文本光标消失/消失

可编辑DIV 光标位置 处理

ContentEditable div - 更新内部 html 后设置光标位置

转vim复制与粘贴

转JS--通过按钮直接把input或者textarea里的值复制到粘贴板里

SecureCRT在登陆Linux后,进入vim编辑页面时,光标无法定位到指定字符,如何解决