aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/select_event/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/element/select_event/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/element/select_event/index.html')
-rw-r--r--files/ja/web/api/element/select_event/index.html84
1 files changed, 84 insertions, 0 deletions
diff --git a/files/ja/web/api/element/select_event/index.html b/files/ja/web/api/element/select_event/index.html
new file mode 100644
index 0000000000..f2c4c8971a
--- /dev/null
+++ b/files/ja/web/api/element/select_event/index.html
@@ -0,0 +1,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', '&lt;input type="text"&gt;')}}</code> および {{HtmlElement("textarea")}} 要素からのみ発生します。</p>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<h3 id="Selection_logger" name="Selection_logger">選択範囲をログ出力</h3>
+
+<pre class="brush: html">&lt;input value="この要素のテキストの一部を選択してみてください。"&gt;
+&lt;p id="log"&gt;&lt;/p&gt;</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>