diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/performancetiming/domainlookupend | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/api/performancetiming/domainlookupend')
-rw-r--r-- | files/zh-cn/web/api/performancetiming/domainlookupend/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/performancetiming/domainlookupend/index.html b/files/zh-cn/web/api/performancetiming/domainlookupend/index.html new file mode 100644 index 0000000000..d996bf27e3 --- /dev/null +++ b/files/zh-cn/web/api/performancetiming/domainlookupend/index.html @@ -0,0 +1,47 @@ +--- +title: PerformanceTiming.domainLookupEnd +slug: Web/API/PerformanceTiming/domainLookupEnd +translation_of: Web/API/PerformanceTiming/domainLookupEnd +--- +<p>{{APIRef("Navigation Timing")}}</p> + +<h2 id="概要">概要</h2> + +<p><code><strong>PerformanceTiming</strong></code><strong><code>.domainLookupEnd</code></strong> 是一个返回代表一个时刻的 <code>unsigned long long</code> 型只读属性,为解析域名结束时的 Unix毫秒时间戳。如果一个持久连接被使用,或者该信息已经被本地资源或者缓存存储,则该值等同于 {{domxref("PerformanceTiming.fetchStart")}}。</p> + +<h2 id="语法">语法</h2> + +<pre class="syntaxbox"><em>time</em> = <em>performanceTiming</em>.domainLookupEnd;</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-domainlookupend', 'PerformanceTiming.domainLookupEnd')}}</td> + <td>{{Spec2('Navigation Timing')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<div> +<div> + + +<p>{{Compat("api.PerformanceTiming.domainLookupEnd")}}</p> +</div> +</div> + +<h2 id="参加">参加</h2> + +<ul> + <li>它属于 {{domxref("PerformanceTiming")}} 接口。</li> +</ul> |