diff options
Diffstat (limited to 'files/zh-cn/web/api/performancetiming/domcomplete')
-rw-r--r-- | files/zh-cn/web/api/performancetiming/domcomplete/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/performancetiming/domcomplete/index.html b/files/zh-cn/web/api/performancetiming/domcomplete/index.html new file mode 100644 index 0000000000..e1a494b0be --- /dev/null +++ b/files/zh-cn/web/api/performancetiming/domcomplete/index.html @@ -0,0 +1,47 @@ +--- +title: PerformanceTiming.domComplete +slug: Web/API/PerformanceTiming/domComplete +translation_of: Web/API/PerformanceTiming/domComplete +--- +<p>{{APIRef("Navigation Timing")}}</p> + +<h2 id="概要">概要</h2> + +<p><code><strong>PerformanceTiming</strong></code><strong><code>.domComplete</code></strong> 是一个返回代表一个时刻的 <code>unsigned long long</code> 型只读属性,为主文档的解析器结束工作,{{domxref("Document.readyState")}} 变为 <code>'complete'且相当于</code> {{event("readystatechange")}} 事件被触发时的 Unix毫秒时间戳。</p> + +<h2 id="语法">语法</h2> + +<pre class="syntaxbox"><em>time</em> = <em>performanceTiming</em>.domComplete;</pre> + +<h2 id="标准">标准</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-domcomplete', 'PerformanceTiming.domComplete')}}</td> + <td>{{Spec2('Navigation Timing')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<div> +<div> + + +<p>{{Compat("api.PerformanceTiming.domComplete")}}</p> +</div> +</div> + +<h2 id="参见">参见</h2> + +<ul> + <li>它属于 {{domxref("PerformanceTiming")}} 接口。</li> +</ul> |