blob: 0f215c946e34cd1e569edbc804018a69c2489e86 (
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
|
---
title: 'Window: paste event'
slug: Web/API/Window/paste_event
tags:
- Evènement
- Reference
- Window
- paste
translation_of: Web/API/Window/paste_event
---
<div>{{APIRef}}</div>
<p>L'événement <strong><code>paste</code></strong> est déclenché lorsque l'utilisateur a lancé une action de "paste" via l'interface utilisateur du navigateur.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Bulles</th>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Annulable</th>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Interface</th>
<td>{{domxref("ClipboardEvent")}}</td>
</tr>
<tr>
<th scope="row">Propriété du gestionnaire d'événements</th>
<td>{{domxref("HTMLElement/onpaste", "onpaste")}}</td>
</tr>
</tbody>
</table>
<p>La cible d'origine de cet événement est le {{domxref ("Element")}} qui était la cible prévue de l'action de collage. Vous pouvez écouter cet événement sur l'interface {{domxref ("Window")}} pour le gérer dans les phases de capture ou de bullage. Pour plus de détails sur cet événement, veuillez consulter la page sur le <a href="/en-US/docs/Web/API/Element/paste_event">Element: paste event</a>.</p>
<h2 id="Exemples">Exemples</h2>
<pre class="brush: js">window.addEventListener('paste', (event) => {
console.log('paste action initiated')
});</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Statut</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Clipboard API', '#clipboard-event-paste')}}</td>
<td>{{Spec2('Clipboard API')}}</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Window.paste_event")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li>Événements liés: {{domxref("Window/cut_event", "cut")}}, {{domxref("Window/copy_event", "copy")}}</li>
<li>Cet événement sur {{domxref("Element")}} cible: {{domxref("Element/paste_event", "paste")}}</li>
<li>Cet événement sur {{domxref("Document")}} cible: {{domxref("Document/paste_event", "paste")}}</li>
</ul>
|