diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-06 16:53:02 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-12 10:43:11 +0900 |
commit | 1a5647614c806fd2ef44315e882a91c368b5429b (patch) | |
tree | 4ce5da5256474263f8334e90d988be45f1e47893 /files/ja | |
parent | bb5e9e9457aaec912bb1d3672e8a925643d4f6d9 (diff) | |
download | translated-content-1a5647614c806fd2ef44315e882a91c368b5429b.tar.gz translated-content-1a5647614c806fd2ef44315e882a91c368b5429b.tar.bz2 translated-content-1a5647614c806fd2ef44315e882a91c368b5429b.zip |
2022/01/11 時点の英語版に同期
Diffstat (limited to 'files/ja')
-rw-r--r-- | files/ja/web/api/htmlinputelement/selectionchange_event/index.md | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlinputelement/selectionchange_event/index.md b/files/ja/web/api/htmlinputelement/selectionchange_event/index.md new file mode 100644 index 0000000000..5a3c85f7b1 --- /dev/null +++ b/files/ja/web/api/htmlinputelement/selectionchange_event/index.md @@ -0,0 +1,86 @@ +--- +title: 'HTMLInputElement: selectionchange イベント' +slug: Web/API/HTMLInputElement/selectionchange_event +tags: + - API + - Event + - リファレンス + - Selection + - 選択 API + - selectionchange + - 実験的 +browser-compat: api.HTMLInputElement.selectionchange_event +translation_of: Web/API/HTMLInputElement/selectionchange_event +--- +{{APIRef}}{{SeeCompatTable}} + +**`selectionchange`** は[選択 API](/ja/docs/Web/API/Selection) のイベントで、 {{HTMLElement("input")}} 要素の中でテキストの選択状態が変化したときに発行されます。 +これは、文字単位の選択範囲位が変化した場合も、キャレットが移動したときも含みます。 + +<table class="properties"> + <tbody> + <tr> + <th>バブリング</th> + <td>はい</td> + </tr> + <tr> + <th>キャンセル</th> + <td>不可</td> + </tr> + <tr> + <th>インターフェイス</th> + <td>{{domxref("Event")}}</td> + </tr> + <tr> + <th>イベントハンドラープロパティ</th> + <td> + {{domxref("GlobalEventHandlers.onselectionchange", "onselectionchange")}} + </td> + </tr> + </tbody> +</table> + +このイベントは通常 {{HTMLElement("input")}} 上にイベントリスナーを追加し、ハンドラー関数内で {{domxref("HTMLInputElement")}} の `selectionStart`, `selectionEnd`, `selectionDirection` の各プロパティを読み取ることで処理します。 + +また、グローバルな {{domxref("GlobalEventHandlers.onselectionchange", "onselectionchange")}} イベントハンドラーにリスナーを追加し、ハンドラー関数内で {{domxref("Document.getSelection()")}} を使って{{domxref("Selection", "選択状態", "", 1)}}を得ることもできます。しかし、これはテキストの選択範囲の変更を取得するのにはあまり便利ではありません。 + +## 例 + +以下の例は、 {{HTMLElement("input")}} 要素の中にあるテキストの選択状態を取得する方法を示しています。 + +### HTML + +```html +<div>Enter and select text here:<br><input id="mytext" rows="2" cols="20"></div> +<div>selectionStart: <span id="start"></span></div> +<div>selectionEnd: <span id="end"></span></div> +<div>selectionDirection: <span id="direction"></span></div> +``` + +### JavaScript + +```js +const myinput = document.getElementById("mytext"); + +myinput.addEventListener("selectionchange", () => { + document.getElementById("start").textContent = myinput.selectionStart; + document.getElementById("end").textContent = myinput.selectionEnd; + document.getElementById("direction").textContent = myinput.selectionDirection; +}); +``` + +### 結果 + +{{EmbedLiveSample("Examples")}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{domxref("GlobalEventHandlers.onselectionchange")}} |