How to move cursor to end of contenteditable entity

前端 未结 7 1785
孤街浪徒
孤街浪徒 2020-11-22 12:12

I need to move caret to end of contenteditable node like on Gmail notes widget.

I read threads on StackOverflow, but those solutions are based on using

7条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 12:45

    If you don't care about older browsers, this one did the trick for me.

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

提交回复
热议问题