blob: 23e672757c3950a7382918188b4289f494af43ef (
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
|
---
title: PerformanceTiming.domContentLoadedEventEnd
slug: Web/API/PerformanceTiming/domContentLoadedEventEnd
tags:
- 性能
translation_of: Web/API/PerformanceTiming/domContentLoadedEventEnd
---
<p>{{APIRef("Navigation Timing")}}</p>
<h2 id="Summary">Summary</h2>
<p><code><strong>PerformanceTiming</strong></code><strong><code>.domContentLoadedEventEnd</code></strong> 为只读属性,返回一个无符号长整型数值(<code>unsigned long),以UNIX时间戳的形式表示一个时刻,这个时刻为所有需要尽早执行的脚本不管是否按顺序,都已经执行完毕。(译注:即DOM Ready)</code></p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox"><em>time</em> = <em>performanceTiming</em>.domContentLoadedEventEnd;</pre>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('Navigation Timing', '#dom-performancetiming-domcontentloadedeventend', 'PerformanceTiming.domContentLoadedEventEnd')}}</td>
<td>{{Spec2('Navigation Timing')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<div>
<div>
<p>{{Compat("api.PerformanceTiming.domContentLoadedEventEnd")}}</p>
</div>
</div>
<h2 id="See_also">See also</h2>
<ul>
<li>所属的 {{domxref("PerformanceTiming")}} 接口</li>
</ul>
|