如何将光标移动到 contenteditable 实体的末尾

IT技术 javascript contenteditable cursor-position
2021-01-10 15:49:33

我需要contenteditable像 Gmail 笔记小部件一样将插入符号移动到节点的末尾

我在 StackOverflow 上阅读了线程,但这些解决方案基于使用输入,并且它们不适用于contenteditable元素。

6个回答

Geowa4 的解决方案适用于 textarea,但不适用于 contenteditable 元素。

此解决方案用于将插入符号移动到 contenteditable 元素的末尾。它应该适用于所有支持 contenteditable 的浏览器。

function setEndOfContenteditable(contentEditableElement)
{
    var range,selection;
    if(document.createRange)//Firefox, Chrome, Opera, Safari, IE 9+
    {
        range = document.createRange();//Create a range (a range is a like the selection but invisible)
        range.selectNodeContents(contentEditableElement);//Select the entire contents of the element with the range
        range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
        selection = window.getSelection();//get the selection object (allows you to change selection)
        selection.removeAllRanges();//remove any selections already made
        selection.addRange(range);//make the range you have just created the visible selection
    }
    else if(document.selection)//IE 8 and lower
    { 
        range = document.body.createTextRange();//Create a range (a range is a like the selection but invisible)
        range.moveToElementText(contentEditableElement);//Select the entire contents of the element with the range
        range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
        range.select();//Select the range (make it the visible selection
    }
}

它可以被类似的代码使用:

elem = document.getElementById('txt1');//This is the element that you want to move the caret to the end of
setEndOfContenteditable(elem);
@Nico Burns:我尝试了您的方法,但在 FireFox 上不起作用。
2021-03-11 15:49:33
geowa4 的解决方案适用于 chrome 中的 textarea,它不适用于任何浏览器中的 contenteditable 元素。我的适用于 contenteditable 元素,但不适用于 textarea。
2021-03-13 15:49:33
selectNodeContents的尼科的是给在Chrome和FF我的错误的部分(没有测试其他浏览器),直到我发现我需要的显然要添加.get(0)的元素,我是喂的功能。我想这与我使用 jQuery 而不是裸 JS 有关系吗?我从@jwarzech 的问题 4233265 中了解到这一点谢谢大家!
2021-03-14 15:49:33
这是这个问题的正确答案,完美,谢谢尼科。
2021-03-18 15:49:33
是的,该函数需要一个 DOM 元素,而不是一个 jQuery 对象。.get(0)检索 jQuery 内部存储的 dom 元素。您还可以 append [0],这相当于.get(0)在此上下文中。
2021-04-01 15:49:33

如果你不关心旧的浏览器,这个对我有用。

// [optional] make sure focus is on the element
yourContentEditableElement.focus();
// select all the content in the element
document.execCommand('selectAll', false, null);
// collapse selection to the end
document.getSelection().collapseToEnd();
这是在 chrome 扩展的后台脚本中唯一对我有用的东西
2021-03-12 15:49:33
这工作正常。在 chrome 71.0.3578.98 和 Android 5.1 上的 WebView 上测试。
2021-03-23 15:49:33
document.execCommand现在已经过时了developer.mozilla.org/en-US/docs/Web/API/Document/execCommand
2021-03-23 15:49:33
2020,这仍然适用于 chrome 版本 83.0.4103.116(官方版本)(64 位)
2021-03-27 15:49:33
又好又容易,我喜欢。
2021-03-27 15:49:33

还有另一个问题。

尼科伯恩斯如果的解决方案工作contenteditableDIV不包含其他元素multilined。

例如,如果一个 div 包含其他 div,而这些其他 div 包含其他内容,则可能会出现一些问题。

为了解决它们,我整理了以下解决方案,这是对Nico一个改进

//Namespace management idea from http://enterprisejquery.com/2010/10/how-good-c-habits-can-encourage-bad-javascript-habits-part-1/
(function( cursorManager ) {

    //From: http://www.w3.org/TR/html-markup/syntax.html#syntax-elements
    var voidNodeTags = ['AREA', 'BASE', 'BR', 'COL', 'EMBED', 'HR', 'IMG', 'INPUT', 'KEYGEN', 'LINK', 'MENUITEM', 'META', 'PARAM', 'SOURCE', 'TRACK', 'WBR', 'BASEFONT', 'BGSOUND', 'FRAME', 'ISINDEX'];

    //From: https://stackoverflow.com/questions/237104/array-containsobj-in-javascript
    Array.prototype.contains = function(obj) {
        var i = this.length;
        while (i--) {
            if (this[i] === obj) {
                return true;
            }
        }
        return false;
    }

    //Basic idea from: https://stackoverflow.com/questions/19790442/test-if-an-element-can-contain-text
    function canContainText(node) {
        if(node.nodeType == 1) { //is an element node
            return !voidNodeTags.contains(node.nodeName);
        } else { //is not an element node
            return false;
        }
    };

    function getLastChildElement(el){
        var lc = el.lastChild;
        while(lc && lc.nodeType != 1) {
            if(lc.previousSibling)
                lc = lc.previousSibling;
            else
                break;
        }
        return lc;
    }

    //Based on Nico Burns's answer
    cursorManager.setEndOfContenteditable = function(contentEditableElement)
    {

        while(getLastChildElement(contentEditableElement) &&
              canContainText(getLastChildElement(contentEditableElement))) {
            contentEditableElement = getLastChildElement(contentEditableElement);
        }

        var range,selection;
        if(document.createRange)//Firefox, Chrome, Opera, Safari, IE 9+
        {    
            range = document.createRange();//Create a range (a range is a like the selection but invisible)
            range.selectNodeContents(contentEditableElement);//Select the entire contents of the element with the range
            range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
            selection = window.getSelection();//get the selection object (allows you to change selection)
            selection.removeAllRanges();//remove any selections already made
            selection.addRange(range);//make the range you have just created the visible selection
        }
        else if(document.selection)//IE 8 and lower
        { 
            range = document.body.createTextRange();//Create a range (a range is a like the selection but invisible)
            range.moveToElementText(contentEditableElement);//Select the entire contents of the element with the range
            range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
            range.select();//Select the range (make it the visible selection
        }
    }

}( window.cursorManager = window.cursorManager || {}));

用法:

var editableDiv = document.getElementById("my_contentEditableDiv");
cursorManager.setEndOfContenteditable(editableDiv);

这样,光标肯定定位在最后一个元素的末尾,最终嵌套。

编辑 #1:为了更通用,while 语句还应考虑所有其他不能包含文本的标签。这些元素被命名为void elements,在这个问题中有一些关于如何测试元素是否为空的方法。因此,假设存在一个调用的函数canContainTexttrue如果参数不是空元素,则返回该函数,以下代码行:

contentEditableElement.lastChild.tagName.toLowerCase() != 'br'

应替换为:

canContainText(getLastChildElement(contentEditableElement))

编辑#2:上面的代码已经完全更新,描述和讨论了每一个变化

在我的代码中还有另一个错误。我修好了它。现在,您可以验证我的代码在此页面中是否有效,而您的则无效
2021-03-15 15:49:33
@VitoGentile 这是一个有点旧的答案,但我想注意到您的解决方案只处理块元素,如果里面有内联元素,则光标将定位在该内联元素之后(如 span、em ...) ,一个简单的解决方法是将内联元素视为无效标签,并将它们添加到 voidNodeTags 中,以便跳过它们。
2021-03-23 15:49:33
我在使用你的函数时遇到错误,控制台说Uncaught TypeError: Cannot read property 'nodeType' of null这是来自被调用的 getLastChildElement 函数。你知道什么可能导致这个问题吗?
2021-03-27 15:49:33
有趣的是,我本来希望浏览器会自动处理这种情况(我对此并不感到惊讶,浏览器似乎从未对 contenteditable 进行直观的处理)。您是否有一个 HTML 示例,其中您的解决方案有效,但我的解决方案无效?
2021-04-09 15:49:33

可以将光标设置到范围的末尾:

setCaretToEnd(target/*: HTMLDivElement*/) {
  const range = document.createRange();
  const sel = window.getSelection();
  range.selectNodeContents(target);
  range.collapse(false);
  sel.removeAllRanges();
  sel.addRange(range);
  target.focus();
  range.detach(); // optimization

  // set scroll to the end if multiline
  target.scrollTop = target.scrollHeight; 
}
使用上面的代码可以解决问题 - 但我希望能够将光标移动到内容可编辑 div 内的任何位置并从该点继续输入 - 例如,用户已经识别出一个错字......我把你上面的代码修改成这个?
2021-03-19 15:49:33
@Zabs 这相当简单:不要setCaretToEnd()每次都调用-仅在需要时调用它:例如在复制粘贴之后,或在限制消息长度之后。
2021-04-02 15:49:33
不错的解决方案,不是像 99% 的 SO 答案那样来自石器时代,并且不被弃用
2021-04-02 15:49:33
这对我有用。在用户选择一个标签后,我将 contenteditable div 中的光标移动到末尾。
2021-04-10 15:49:33

将光标移动到可编辑范围的末尾以响应焦点事件:

  moveCursorToEnd(el){
    if(el.innerText && document.createRange)
    {
      window.setTimeout(() =>
        {
          let selection = document.getSelection();
          let range = document.createRange();

          range.setStart(el.childNodes[0],el.innerText.length);
          range.collapse(true);
          selection.removeAllRanges();
          selection.addRange(range);
        }
      ,1);
    }
  }

并在事件处理程序中调用它(在这里react):

onFocus={(e) => this.moveCursorToEnd(e.target)}}