blob: 910b29c044aba30b803ba60cf1878015e4940142 (
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
|
---
title: PerformanceNavigationTiming.loadEventStart
slug: Web/API/PerformanceNavigationTiming/loadEventStart
tags:
- API
- Property
- Propriété
- Reference
- PerformanceNavigationTiming
- Performance Web
translation_of: Web/API/PerformanceNavigationTiming/loadEventStart
---
<div>{{APIRef("Navigation Timing")}}{{SeeCompatTable}}</div>
<p>La propriété en lecture seule <strong><code>loadEventStart</code></strong> retourne un <a href="/fr/docs/Web/API/DOMHighResTimeStamp"><code>timestamp</code></a> représentant la valeur temporelle égale au temps immédiatement avant le déclenchement de l'événement de chargement du document actuel.</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="brush:js"><var>perfEntry</var>.loadEventStart;</pre>
<h3 id="Return_Value">Valeur de retour</h3>
<p>Un <a href="/fr/docs/Web/API/DOMHighResTimeStamp"><code>timestamp</code></a> représentant une valeur temporelle égale à l'heure précédant immédiatement l'événement de chargement du document actuel.</p>
<h2 id="Example">Exemple</h2>
<p>L'exemple suivant illustre l'utilisation de cette propriété.</p>
<pre class="brush:js">function print_nav_timing_data() {
// Utilise getEntriesByType() pour obtenir uniquement les événements de type "navigation".
let perfEntries = performance.getEntriesByType("navigation");
for (let i = 0; i < perfEntries.length; i++) {
console.log("= Entrée de navigation : entry[" + i + "]");
let p = perfEntries[i];
// propriétés du DOM
console.log("Contenu du DOM chargé = " + (p.domContentLoadedEventEnd - p.domContentLoadedEventStart));
console.log("Contenu du DOM complet = " + p.domComplete);
console.log("Contenu du DOM interactif = " + p.interactive);
// temps de chargement et de déchargement des documents
console.log("Document chargé = " + (p.loadEventEnd - p.loadEventStart));
console.log("Document déchargé = " + (p.unloadEventEnd - p.unloadEventStart));
// autres propriétés
console.log("type = " + p.type);
console.log("redirectCount = " + p.redirectCount);
}
}
</pre>
<h2 id="Specifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Navigation Timing Level 2',
'#dom-performancenavigationtiming-loadeventstart', 'loadEventStart')}}</td>
<td>{{Spec2('Navigation Timing Level 2')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.PerformanceNavigationTiming.loadEventStart")}}</p>
|