blob: f2c4c8971a198a5d5238f3e28f858c8e47202a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
---
title: 'Element: select イベント'
slug: Web/API/Element/select_event
tags:
- Element
- Event
- Event Handler
- NeedsCompatTable
- Reference
- UIEvent
- イベント
translation_of: Web/API/Element/select_event
---
<div>{{APIRef}}</div>
<p><strong><code>select</code></strong> イベントは、いくらかのテキストが選択されたときに発生します。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">バブリング</th>
<td>あり</td>
</tr>
<tr>
<th scope="row">キャンセル</th>
<td>不可</td>
</tr>
<tr>
<th scope="row">インターフェイス</th>
<td>ユーザーインターフェイスから作成された場合は {{domxref("UIEvent")}}、それ以外ならば {{domxref("Event")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラープロパティ</th>
<td>{{domxref("GlobalEventHandlers.onselect", "onselect")}}</td>
</tr>
</tbody>
</table>
<p>このイベントはすべての言語のすべての要素で利用できる訳ではありません。例えば、 HTML では、 <code>select</code> イベントはフォームの <code>{{HtmlElement('input/text', '<input type="text">')}}</code> および {{HtmlElement("textarea")}} 要素からのみ発生します。</p>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Selection_logger" name="Selection_logger">選択範囲をログ出力</h3>
<pre class="brush: html"><input value="この要素のテキストの一部を選択してみてください。">
<p id="log"></p></pre>
<pre class="brush: js">function logSelection(event) {
const log = document.getElementById('log');
const selection = event.target.value.substring(event.target.selectionStart, event.target.selectionEnd);
log.textContent = `You selected: ${selection}`;
}
const input = document.querySelector('input');
input.addEventListener('select', logSelection);</pre>
<p>{{EmbedLiveSample("Selection_logger")}}</p>
<h3 id="onselect_equivalent" name="onselect_equivalent">onselect による同等の処理</h3>
<p>イベントハンドラーを {{domxref("GlobalEventHandlers.onselect", "onselect")}} プロパティで設定することもできます。</p>
<pre class="brush: js">input.onselect = logSelection;</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('UI Events', '#event-type-select', 'select')}}</td>
<td>{{Spec2('UI Events')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Element.select_event")}}</p>
|