web-dev-qa-db-ja.com

contenteditable要素のselectionStartおよびselectionEnd

contentionable div要素で機能させるために、textareaのselectionStartおよびselectionEnd属性に取り組んでいます。私はgoogleとSOで多くの関連記事をチェックしましたが、役に立ちません。textareaで完全に機能している次のようなものがあります。しかし、これはcontenteditable div。

function replaceVal(node, val, step){
    //...
    var cursorLoc =  node.selectionStart;
    node.value = node.value.substring(0, node.selectionStart - step) + value +
    node.value.substring(node.selectionEnd, node.value.length);
    node.scrollTop = scrollTop;
    node.selectionStart = cursorLoc + value.length - step;
    node.selectionEnd = cursorLoc + value.length - step;
  //...
}

これを変更して、textareaではなくcontenteditable div要素で機能するようにするにはどうすればよいですか?

22
Semytech

これを試してください。contentEditableかどうかに関係なく、選択したテキストを返します。

function GetSelectedText() {

            if (document.getSelection) {    // all browsers, except IE before version 9
                var sel = document.getSelection();
                    // sel is a string in Firefox and Opera, 
                    // and a selectionRange object in Google Chrome, Safari and IE from version 9
                    // the alert method displays the result of the toString method of the passed object
                alert(sel);
            } 
            else {
                if (document.selection) {   // Internet Explorer before version 9
                    var textRange = document.selection.createRange();
                    alert(textRange.text);
                }
            }
        }
<div>Test Example Microsoft T-shirt box</div>
<button onClick="GetSelectedText()">Get text</button>

私はjsfiddlerでこの例を作成します、それを参照してください ここにリンクの説明を入力してください

8
RBoschini