現在のカーソル位置でテキストエリアにテキストを挿入する方法は?


124

ユーザーのカーソル位置のテキスト領域にテキストを追加する簡単な関数を作成したいと思います。クリーンな関数である必要があります。基本だけです。残りはわかります。



2
この答えを見て、既に掲示ください: stackoverflow.com/questions/4456545/...
ジョンCulviner



元に戻す機能を備えたシンプルなモジュールを探している場合は、insert-text-textareaを試してください。IE8 +のサポートが必要な場合は、insert-text-at-cursorパッケージを試してください
fregante

回答:


115
function insertAtCursor(myField, myValue) {
    //IE support
    if (document.selection) {
        myField.focus();
        sel = document.selection.createRange();
        sel.text = myValue;
    }
    //MOZILLA and others
    else if (myField.selectionStart || myField.selectionStart == '0') {
        var startPos = myField.selectionStart;
        var endPos = myField.selectionEnd;
        myField.value = myField.value.substring(0, startPos)
            + myValue
            + myField.value.substring(endPos, myField.value.length);
    } else {
        myField.value += myValue;
    }
}

19
「キャレットの位置を失う」を修正するには:これらの行を前に挿入します} else { myField.selectionStart = startPos + myValue.length; myField.selectionEnd = startPos + myValue.length;
user340140 '28

10
回答をありがとうRabに、修正を@ user340140に感謝します。これが実際の例です。
Znarkus 2013年

@ user340140、「キャレットポーションを失う」修正は、提案する行の直前の入力にフォーカスを当てた場合にのみ機能します。少なくともChrome(現在のバージョン62.0)では、フォーカスされていないフィールドで選択を変更することは不可能のようです
Jette

このコードにはマイナーな問題があります:selectionStartは数値なので、と比較する必要があります。比較する必要は0ありません'0'。おそらく使用する必要があります===
Herohtar

82

このスニペットは、jQuery 1.9以降の数行で役立ちます:http ://jsfiddle.net/4MBUG/2/

$('input[type=button]').on('click', function() {
    var cursorPos = $('#text').prop('selectionStart');
    var v = $('#text').val();
    var textBefore = v.substring(0,  cursorPos);
    var textAfter  = v.substring(cursorPos, v.length);

    $('#text').val(textBefore + $(this).val() + textAfter);
});

すごい!マイナーな修正を加えた1.6でも動作します。
Șerban Ghiță 2014

1
ただし、選択したテキストを置き換えることはできません
セルゲイゴリーニー2014年

@mparkuk:それはまだ、user340140によって上記の「キャレット位置を失う」問題に苦しんでいます。(申し訳ありませんが、修正する必要がありますが、時間切れになりました。)
jbobbins 14

4
実用的なフィドルを提供していただきありがとうございます。キャレットの位置もリセットするように更新し、jqueryプラグインにしました:jsfiddle.net/70gqn153
freedomn-m

これは機能しますが、カーソルは誤った場所に移動します。
AndroidDev

36

適切なJavaScriptのために

HTMLTextAreaElement.prototype.insertAtCaret = function (text) {
  text = text || '';
  if (document.selection) {
    // IE
    this.focus();
    var sel = document.selection.createRange();
    sel.text = text;
  } else if (this.selectionStart || this.selectionStart === 0) {
    // Others
    var startPos = this.selectionStart;
    var endPos = this.selectionEnd;
    this.value = this.value.substring(0, startPos) +
      text +
      this.value.substring(endPos, this.value.length);
    this.selectionStart = startPos + text.length;
    this.selectionEnd = startPos + text.length;
  } else {
    this.value += text;
  }
};

とても素敵な拡張です!期待どおりに動作します。ありがとう!
Martin Johansson

最高のソリューション!ありがとう
Dima Melnik

4
所有していないオブジェクトのプロトタイプを拡張することはお勧めできません。それを通常の関数にすれば、それも同様に機能します。
fregante

これにより、設定後に編集要素の取り消しバッファがクリアされますthis.value = ...。それを保存する方法はありますか?
c00000fd

18

新しい答え:

https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setRangeText

ただし、これがブラウザでサポートされているかどうかはわかりません。

Chrome 81でテスト済み。

function typeInTextarea(newText, el = document.activeElement) {
  const [start, end] = [el.selectionStart, el.selectionEnd];
  el.setRangeText(newText, start, end, 'select');
}

document.getElementById("input").onkeydown = e => {
  if (e.key === "Enter") typeInTextarea("lol");
}
<input id="input" />
<br/><br/>
<div>Press Enter to insert "lol" at caret.</div>
<div>It'll replace a selection with the given text.</div>

古い答え:

Erik Pukinskisの答えの純粋なJS変更:

function typeInTextarea(newText, el = document.activeElement) {
  const start = el.selectionStart
  const end = el.selectionEnd
  const text = el.value
  const before = text.substring(0, start)
  const after  = text.substring(end, text.length)
  el.value = (before + newText + after)
  el.selectionStart = el.selectionEnd = start + newText.length
  el.focus()
}

document.getElementById("input").onkeydown = e => {
  if (e.key === "Enter") typeInTextarea("lol");
}
<input id="input" />
<br/><br/>
<div>Press Enter to insert "lol" at caret.</div>

Chrome 47、81、Firefox 76でテスト済み。

(オートコンプリートまたは同様の効果のために)同じフィールドに入力しているときに現在選択されているテキストの値を変更する場合は、次を渡します。 document.activeElement、最初のパラメーターとしてます。

これは最もエレガントな方法ではありませんが、とても簡単です。

使用例:

typeInTextarea('hello');
typeInTextarea('haha', document.getElementById('some-id'));

>>で行を閉じなかった。<<
フェニックス

4
@Phoenixセミコロンは、JavaScriptではオプションです。それらなしでも動作します。ただし、必要に応じてセミコロンで編集できます。大したことはありません。
Jayant Bhawal 2016年

3
JSFiddleでデモを行いました。またVersion 54.0.2813.0 canary (64-bit)、基本的にChrome Canary 54.0.2813.0であるを使用して動作します。最後に、IDでテキストボックスに挿入する場合は、関数ののdocument.getElementById('insertyourIDhere')代わりにを使用しelます。
haykam

私の答えのどの部分が「純粋な」JSではありませんか?そこにいくつかのC ++を忘れましたか?
Erik Aigner

2
@ErikAignerさん、こんにちは!私の悪いことに、この質問には2人のErikが答えていることに気づきませんでした。という意味Erik Pukinskisです。私はそれをよりよく反映するように答えを更新します。
Jayant Bhawal

15

firefox、chrome、opera、safari、edgeで動作するシンプルなソリューションですが、おそらく古いIEブラウザでは動作しません。

  var target = document.getElementById("mytextarea_id")

  if (target.setRangeText) {
     //if setRangeText function is supported by current browser
     target.setRangeText(data)
  } else {
    target.focus()
    document.execCommand('insertText', false /*no UI*/, data);
  }
}

setRangeText関数を使用すると、現在の選択内容を提供されたテキストで置き換えることができます。選択範囲がない場合は、カーソル位置にテキストを挿入できます。私の知る限り、これはFirefoxでのみサポートされています。

他のブラウザには、現在フォーカスされているhtml要素にのみ影響を与える「insertText」コマンドがあり、同じ動作をします setRangeText

この記事に部分的に触発されました


これはほぼ正しい方法です。あなたがリンクした記事は、パッケージとして完全なソリューションを提供します:insert-text-at-cursor。ただしexecCommand、それundoinsert-text-textareaをサポートおよび作成したため、私は好みます。IEのサポートはありませんが、サイズは小さい
fregante

1
残念ながら、execCommandMDNにより不要とみなされる:developer.mozilla.org/en-US/docs/Web/API/Document/execCommand本当に有用であると思わなぜ、私は知りません!
Richard

1
はい、execCommandは他のブラウザで使用されます。Firefoxでは、代わりに関数setRangeTextが使用されます。
ラマスト

Ramast、それはあなたのコードがすることではありません。それは、それを定義するすべてのブラウザに対して(ほとんど)execCommandではなくsetRangeTextを使用します。説明する動作については、最初にdocument.execCommandを呼び出してから、戻り値を確認する必要があります。falseの場合は、target.setRangeTextを使用します。
Jools

@Jools setRangeTextがサポートされている場合は、execCommandの代わりに使用してみませんか?最初にexecCommandを試す必要があるのはなぜですか?
ラマスト

10

Rabの答えはうまくいきますが、Microsoft Edgeには適していません。そのため、Edgeにも小さな変更を加えました。

https://jsfiddle.net/et9borp4/

function insertAtCursor(myField, myValue) {
    //IE support
    if (document.selection) {
        myField.focus();
        sel = document.selection.createRange();
        sel.text = myValue;
    }
    // Microsoft Edge
    else if(window.navigator.userAgent.indexOf("Edge") > -1) {
      var startPos = myField.selectionStart; 
      var endPos = myField.selectionEnd; 

      myField.value = myField.value.substring(0, startPos)+ myValue 
             + myField.value.substring(endPos, myField.value.length); 

      var pos = startPos + myValue.length;
      myField.focus();
      myField.setSelectionRange(pos, pos);
    }
    //MOZILLA and others
    else if (myField.selectionStart || myField.selectionStart == '0') {
        var startPos = myField.selectionStart;
        var endPos = myField.selectionEnd;
        myField.value = myField.value.substring(0, startPos)
            + myValue
            + myField.value.substring(endPos, myField.value.length);
    } else {
        myField.value += myValue;
    }
}

9

私は単純なjavascriptが好きで、通常はjQueryを使用しています。これがmparkukに基づいて私が思いついたものです:

function typeInTextarea(el, newText) {
  var start = el.prop("selectionStart")
  var end = el.prop("selectionEnd")
  var text = el.val()
  var before = text.substring(0, start)
  var after  = text.substring(end, text.length)
  el.val(before + newText + after)
  el[0].selectionStart = el[0].selectionEnd = start + newText.length
  el.focus()
}

$("button").on("click", function() {
  typeInTextarea($("textarea"), "some text")
  return false
})

これがデモです:http : //codepen.io/erikpukinskis/pen/EjaaMY?editors=101


6

function insertAtCaret(text) {
  const textarea = document.querySelector('textarea')
  textarea.setRangeText(
    text,
    textarea.selectionStart,
    textarea.selectionEnd,
    'end'
  )
}

setInterval(() => insertAtCaret('Hello'), 3000)
<textarea cols="60">Stack Overflow Stack Exchange Starbucks Coffee</textarea>

4

テキストの挿入後にユーザーが入力に触れない場合、「input」イベントはトリガーされず、value属性は変更を反映しません。したがって、プログラムでテキストを挿入した後に入力イベントをトリガーすることが重要です。フィールドに焦点を合わせるだけでは十分ではありません。

以下は、最後に入力トリガーがあるSnorvargの回答のコピーです。

function insertAtCursor(myField, myValue) {
    //IE support
    if (document.selection) {
        myField.focus();
        sel = document.selection.createRange();
        sel.text = myValue;
    }
    // Microsoft Edge
    else if(window.navigator.userAgent.indexOf("Edge") > -1) {
      var startPos = myField.selectionStart; 
      var endPos = myField.selectionEnd; 

      myField.value = myField.value.substring(0, startPos)+ myValue 
             + myField.value.substring(endPos, myField.value.length); 

      var pos = startPos + myValue.length;
      myField.focus();
      myField.setSelectionRange(pos, pos);
    }
    //MOZILLA and others
    else if (myField.selectionStart || myField.selectionStart == '0') {
        var startPos = myField.selectionStart;
        var endPos = myField.selectionEnd;
        myField.value = myField.value.substring(0, startPos)
            + myValue
            + myField.value.substring(endPos, myField.value.length);
    } else {
        myField.value += myValue;
    }
    triggerEvent(myField,'input');
}

function triggerEvent(el, type){
  if ('createEvent' in document) {
    // modern browsers, IE9+
    var e = document.createEvent('HTMLEvents');
    e.initEvent(type, false, true);
    el.dispatchEvent(e);
  } else {
    // IE 8
    var e = document.createEventObject();
    e.eventType = type;
    el.fireEvent('on'+e.eventType, e);
  }
}

triggerEvent関数のplainjs.comへの謝辞

その他のイベントoninput程度でw3schools.com

チャット用の絵文字ピッカーの作成中にこれを発見しました。ユーザーがいくつかの絵文字を選択して「送信」ボタンを押すだけの場合、ユーザーが入力フィールドに触れることはありません。挿入された絵文字のユニコードが入力フィールドに表示されていたとしても、value属性をチェックするときは常に空でした。ユーザーがフィールドに触れない場合、 'input'イベントは発生せず、解決策はこのようにトリガーすることでした。これを理解するのにかなり時間がかかりました...誰かの時間が節約されることを願っています。


0

独自の参照用に変更された関数を投稿します。この例<select>では、オブジェクトから選択されたアイテムを挿入し、タグの間にキャレットを置きます:

//Inserts a choicebox selected element into target by id
function insertTag(choicebox,id) {
    var ta=document.getElementById(id)
    ta.focus()
    var ss=ta.selectionStart
    var se=ta.selectionEnd
    ta.value=ta.value.substring(0,ss)+'<'+choicebox.value+'>'+'</'+choicebox.value+'>'+ta.value.substring(se,ta.value.length)
    ta.setSelectionRange(ss+choicebox.value.length+2,ss+choicebox.value.length+2)
}

0
 /**
 * Usage "foo baz".insertInside(4, 0, "bar ") ==> "foo bar baz"
 */
String.prototype.insertInside = function(start, delCount, newSubStr) {
    return this.slice(0, start) + newSubStr + this.slice(start + Math.abs(delCount));
};


 $('textarea').bind("keydown keypress", function (event) {
   var val = $(this).val();
   var indexOf = $(this).prop('selectionStart');
   if(event.which === 13) {
       val = val.insertInside(indexOf, 0,  "<br>\n");
       $(this).val(val);
       $(this).focus();
    }
})

これは質問に答えるかもしれませんが、答えの本質的な部分と、おそらくOPsコードの問題点を説明する方が良いでしょう。
ピロー2017

0

以下のコードは、Dmitriy Kubyshkinによるhttps://github.com/grassator/insert-text-at-cursorパッケージのTypeScript適応です。


/**
 * Inserts the given text at the cursor. If the element contains a selection, the selection
 * will be replaced by the text.
 */
export function insertText(input: HTMLTextAreaElement | HTMLInputElement, text: string) {
  // Most of the used APIs only work with the field selected
  input.focus();

  // IE 8-10
  if ((document as any).selection) {
    const ieRange = (document as any).selection.createRange();
    ieRange.text = text;

    // Move cursor after the inserted text
    ieRange.collapse(false /* to the end */);
    ieRange.select();

    return;
  }

  // Webkit + Edge
  const isSuccess = document.execCommand("insertText", false, text);
  if (!isSuccess) {
    const start = input.selectionStart;
    const end = input.selectionEnd;
    // Firefox (non-standard method)
    if (typeof (input as any).setRangeText === "function") {
      (input as any).setRangeText(text);
    } else {
      if (canManipulateViaTextNodes(input)) {
        const textNode = document.createTextNode(text);
        let node = input.firstChild;

        // If textarea is empty, just insert the text
        if (!node) {
          input.appendChild(textNode);
        } else {
          // Otherwise we need to find a nodes for start and end
          let offset = 0;
          let startNode = null;
          let endNode = null;

          // To make a change we just need a Range, not a Selection
          const range = document.createRange();

          while (node && (startNode === null || endNode === null)) {
            const nodeLength = node.nodeValue.length;

            // if start of the selection falls into current node
            if (start >= offset && start <= offset + nodeLength) {
              range.setStart((startNode = node), start - offset);
            }

            // if end of the selection falls into current node
            if (end >= offset && end <= offset + nodeLength) {
              range.setEnd((endNode = node), end - offset);
            }

            offset += nodeLength;
            node = node.nextSibling;
          }

          // If there is some text selected, remove it as we should replace it
          if (start !== end) {
            range.deleteContents();
          }

          // Finally insert a new node. The browser will automatically
          // split start and end nodes into two if necessary
          range.insertNode(textNode);
        }
      } else {
        // For the text input the only way is to replace the whole value :(
        const value = input.value;
        input.value = value.slice(0, start) + text + value.slice(end);
      }
    }

    // Correct the cursor position to be at the end of the insertion
    input.setSelectionRange(start + text.length, start + text.length);

    // Notify any possible listeners of the change
    const e = document.createEvent("UIEvent");
    e.initEvent("input", true, false);
    input.dispatchEvent(e);
  }
}

function canManipulateViaTextNodes(input: HTMLTextAreaElement | HTMLInputElement) {
  if (input.nodeName !== "TEXTAREA") {
    return false;
  }
  let browserSupportsTextareaTextNodes;
  if (typeof browserSupportsTextareaTextNodes === "undefined") {
    const textarea = document.createElement("textarea");
    textarea.value = "1";
    browserSupportsTextareaTextNodes = !!textarea.firstChild;
  }
  return browserSupportsTextareaTextNodes;
}

-1

getElementById(myField)に変更しました

 function insertAtCursor(myField, myValue) {
    //IE support
    if (document.selection) {
        document.getElementById(myField).focus();
        sel = document.selection.createRange();
        sel.text = myValue;
    }
    //MOZILLA and others
    else if (document.getElementById(myField).selectionStart || document.getElementById(myField).selectionStart == '0') {
        var startPos = document.getElementById(myField).selectionStart;
        var endPos = document.getElementById(myField).selectionEnd;
        document.getElementById(myField).value = document.getElementById(myField).value.substring(0, startPos)
            + myValue
            + document.getElementById(myField).value.substring(endPos, document.getElementById(myField).value.length);
    } else {
        document.getElementById(myField).value += myValue;
    }
}

3
これは、必要以上にDOMにヒットすることになります。myfieldローカルとして保存する方がパフォーマンスがはるかに優れています
TMan

2
うわー、本当にあまりにも多くの繰り返しdocument.getElementById(myField)!最初にそれを行い、変数名を使用します。同じ要素を重複して何回検索するつもりですか?
doug65536 2016年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.