blob: ca4c52d1771dd9ab511db3f2c64a6d8bfbaf62aa (
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
|
---
title: PageTransitionEvent
slug: Web/API/PageTransitionEvent
translation_of: Web/API/PageTransitionEvent
---
{{APIRef("HTML DOM")}}
Les évènements de transition de page sont émis quand une page web est chargée ou déchargée.
## Information du DOM
### Hiérarchie d’héritage
[Event](/fr/docs/Web/API/Event) PageTransitionEvent
## Exemple
### HTML
```html
<!DOCTYPE html>
<html>
<body onpageshow="myFunction(event)">
</body>
</html>
```
### JavaScript
```js
function myFunction(event) {
if (event.persisted) {
alert("La page a été mise en cache par le navigateur");
} else {
alert("La page n’a PAS été mise en cache par le navigateur");
}
}
```
## Membres
L’objet **PageTransitionEvent** possède les types de membres suivants :
- [Propriétés](#Propriétés)
### Propriétés
L’objet **PageTransitionEvent** possède les propriétés suivantes :
<table>
<tbody>
<tr>
<th>Propriété</th>
<th>Type d’accès</th>
<th>Description</th>
</tr>
<tr>
<th><code>persisted</code></th>
<th>Lecture seule</th>
<th>Indique si une page web est chargée depuis le cache.</th>
</tr>
</tbody>
</table>
|