blob: c2c93916c8576d9f8d7e0f64f4f63fa5c25b3a2d (
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
|
---
title: 'Window: online event'
slug: Web/API/Window/online_event
tags:
- API
- Evènement
- Online
- Reference
- Window
translation_of: Web/API/Window/online_event
---
<div>{{APIRef}}</div>
<p>L'événement <strong><code>online</code></strong> de l'interface {{domxref("Window")}} est déclenché lorsque le navigateur a obtenu l'accès au réseau et que la valeur de {{domxref("Navigator.onLine")}} passe à <code>true</code>.</p>
<div class="note">
<p><strong>Note :</strong> Cet événement ne doit pas être utilisé pour déterminer la disponibilité d'un site Web particulier. Des problèmes de réseau ou des pare-feu peuvent encore empêcher l'accès au site Web.</p>
</div>
<table class="properties">
<tbody>
<tr>
<th scope="row">Bulles</th>
<td>No</td>
</tr>
<tr>
<th scope="row">Annulable</th>
<td>No</td>
</tr>
<tr>
<th scope="row">Interface</th>
<td>{{domxref("Event")}}</td>
</tr>
<tr>
<th scope="row">Propriété de gestionnaire d'événements</th>
<td>{{domxref("GlobalEventHandlers.ononline", "ononline")}}</td>
</tr>
</tbody>
</table>
<h2 id="Exemples">Exemples</h2>
<pre class="brush: js">// addEventListener version
window.addEventListener('online', (event) => {
console.log("Vous êtes maintenant connecté au réseau.");
});
// ononline version
window.ononline = (event) => {
console.log("Vous êtes maintenant connecté au réseau.");
};
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', "indices.html#event-online", "online event")}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Window.online_event")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li><a href="/en-US/docs/Web/API/Window/offline_event"><code>offline</code></a></li>
</ul>
|