blob: 862980360f9ad259fa9b624efb7cc959af6dddcf (
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
|
---
title: GlobalEventHandlers.onselect
slug: Web/API/GlobalEventHandlers/onselect
tags:
- API
- Gestionnaire d'événement
- HTML DOM
- Propriété
- Reference
translation_of: Web/API/GlobalEventHandlers/onselect
---
<div>{{ ApiRef("HTML DOM") }}</div>
<p>La propriété <strong><code>onselect</code></strong> du mixin {{domxref("GlobalEventHandlers")}} est un {{event("Event_handlers", "event handler")}} qui traite les événements <a href="/fr-FR/docs/Web/API/Element/select_event"><code>select</code></a>.</p>
<p>L'événement <code>select</code> n'est déclenché qu'après que du texte à l'intérieur d'un <code>{{HtmlElement('input/text', '<input type="text">')}}</code> ou d'un {{HtmlElement("textarea")}} a été sélectionné.</p>
<h2 id="Syntax" name="Syntax">Syntaxe</h2>
<pre class="syntaxbox notranslate"><em>target</em>.onselect = <em>functionRef</em>;
</pre>
<h3 id="Valeur">Valeur</h3>
<p><code>réfFonction</code> est un nom de fonction ou une <a href="/fr-FR/docs/Web/JavaScript/Reference/Operators/function">expression retournant une fonction</a>. La fonction reçoit un objet {{domxref("UIEvent")}} comme unique argument.</p>
<h2 id="Exemples">Exemples</h2>
<p>Cet exemple enregistre le texte que vous sélectionnez à l'intérieur d'un élément {{HtmlElement("textarea")}}.</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><textarea>Essayez de sélectionner du texte dans cet élément.</textarea>
<p id="log"></p></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">function enregistrerSelection(event) {
const log = document.getElementById('log');
const selection = event.target.value.substring(event.target.selectionStart, event.target.selectionEnd);
log.textContent = `Vous avez sélectionné : ${selection}`;
}
const textarea = document.querySelector('textarea');
textarea.onselect = enregistrerSelection;</pre>
<h3 id="Résultat">Résultat</h3>
<p>{{EmbedLiveSample("Examples")}}</p>
<h2 id="Specification" name="Specification">Spécification</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onselect','onselect')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.GlobalEventHandlers.onselect")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>L'événement <a href="/fr-FR/docs/Web/API/Element/select_event"><code>select</code></a></li>
</ul>
|