--- title: window.getSelection slug: Web/API/Window/getSelection tags: - API - DOM - Method - NeedsMobileBrowserCompatibility - Reference - Selection - Selection API - Window translation_of: Web/API/Window/getSelection ---
ユーザーが選択した文字列の範囲やキャレットの現在位置を示す {{domxref("Selection")}} オブジェクトを返します。
selection = window.getSelection();
A {{domxref("Selection")}} オブジェクト。
文字列へ型変換すると、空の文字列(""
)を追加するか {{domxref("Selection.toString()")}} を使って、選択された文字列を返します。
function foo() { var selObj = window.getSelection(); alert(selObj); var selRange = selObj.getRangeAt(0); // 以下、取得した選択文字列に対して何らかの処理を行う }
JavaScript では、文字列が渡されることを前提としている関数 ({{ Domxref("window.alert()") }} や {{ Domxref("document.write()") }}) にオブジェクトが渡されると、そのオブジェクトの {{jsxref("Object.toString", "toString()")}} メソッドが呼び出され、その結果が関数へ渡されます。このため、実際はプロパティとメソッドを持つオブジェクトなのに、文字列であるかのように見えてしまいます。
上の例では、{{domxref("window.alert()")}} へ渡されるときに自動的に selObj.toString()
が呼び出されます。しかし、{{domxref("Selection")}} オブジェクトで JavaScript の String プロパティや length
、substr
などのメソッドを直に使おうとすると、オブジェクトにその名前のプロパティやメソッドが存在しないはエラーとなり、存在する場合は予期せぬ結果を返すでしょう。Selection
オブジェクトを文字列として使うなら、下記のように toString()
メソッドを呼び出してください。
var selectedText = selObj.toString();
selObj
は Selection
オブジェクトです。selectedText
は文字列です。 (選択された文字列)同じように機能する {{domxref("Document.getSelection()")}} を呼び出すことができます。
HTML input 要素は selection を扱うための簡単な支援 API を提供しています。 (詳細: {{domxref("HTMLInputElement.setSelectionRange()")}})
selection と focus の違いに注意してください。{{domxref("Document.activeElement")}} はフォーカスされた要素を返します。
仕様書 | 策定状況 | コメント |
---|---|---|
{{SpecName("Selection API", "#extensions-to-window-interface", "Window.getSelection()")}} | {{Spec2("Selection API")}} | 新仕様 |
{{SpecName("HTML Editing", "#dom-window-getselection", "Window.getSelection()")}} | {{Spec2("HTML Editing")}} | 初期定義 |
{{Compat("api.Window.getSelection")}}