web-dev-qa-db-ja.com

コンテンツ編集可能エンティティの最後にカーソルを移動する方法

Gmailのメモウィジェットのように、キャレットをcontenteditableノードの最後に移動する必要があります。

StackOverflowでスレッドを読みましたが、これらのソリューションは入力の使用に基づいており、contenteditable要素では機能しません。

72
avsej

別の問題もあります。

Nico Burns のソリューションは、contenteditable divに他の複数行要素が含まれていない場合に機能します。

たとえば、divに他の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);

このようにして、カーソルは必ず最後の要素の最後に配置され、最終的にネストされます。

EDIT#1:より一般的にするために、while文はテキストを含めることができない他のすべてのタグも考慮する必要があります。これらの要素にはvoid elementsという名前が付けられ、 この質問 には、要素がvoidであるかどうかをテストする方法がいくつかあります。したがって、引数がvoid要素でない場合にcanContainTextを返すtrueという関数が存在すると仮定すると、次のコード行があります。

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

次のものに置き換える必要があります。

canContainText(getLastChildElement(contentEditableElement))

EDIT#2:上記のコードは完全に更新され、すべての変更が説明および議論されています。

22
Vito Gentile

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);
212
Nico Burns

古いブラウザを気にしないのであれば、このブラウザが私にとってはうまくいきました。

// [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();
6
Juank

カーソルを範囲内の最後に設定することができます:

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; 
}
3
am0wa

フォーカスイベントに応じてカーソルを編集可能なスパンの最後に移動します。

  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);
    }
  }

そして、イベントハンドラーで呼び出します(ここで反応します):

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

要素を編集可能にしようとすると、同様の問題が発生しました。 ChromeおよびFireFoxで可能でしたが、FireFoxでは、キャレットが入力の先頭に移動するか、入力の終了後に1スペース移動しました。エンドユーザーにとって非常に混乱していると思います、コンテンツを編集しようとしています。

いくつかのことを試しても解決策は見つかりませんでした。私のために働いた唯一のことは、私の内部に単純な古いテキスト入力を置くことによって「問題を回避する」ことでした。今では動作します。 「コンテンツ編集可能」は依然としてエッジテクノロジーを出血させているようです。

0
Panu Logic