diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
commit | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch) | |
tree | a9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/web/api/performance.timing | |
parent | 074785cea106179cb3305637055ab0a009ca74f2 (diff) | |
download | translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2 translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip |
initial commit
Diffstat (limited to 'files/zh-tw/web/api/performance.timing')
-rw-r--r-- | files/zh-tw/web/api/performance.timing/index.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/files/zh-tw/web/api/performance.timing/index.html b/files/zh-tw/web/api/performance.timing/index.html new file mode 100644 index 0000000000..33d0a54171 --- /dev/null +++ b/files/zh-tw/web/api/performance.timing/index.html @@ -0,0 +1,56 @@ +--- +title: Performance.timing +slug: Web/API/Performance.timing +tags: + - API + - Navigation Timing + - Performance + - Property + - Read-only + - 唯讀 + - 屬性 + - 效能 +translation_of: Web/API/Performance/timing +--- +<p>{{APIRef("Performance")}}</p> + +<h2 id="摘要">摘要</h2> + +<p><code><strong>Performance</strong></code><strong><code>.timing</code></strong> 是唯讀的屬性,傳回的 {{domxref("PerformanceTiming")}} 物件當中包含了效能與時間延遲相關的資訊。</p> + +<h2 id="語法">語法</h2> + +<pre class="syntaxbox"><em>timingInfo</em> = <em>performance</em>.timing;</pre> + +<h2 id="規格">規格</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">規格</th> + <th scope="col">狀態</th> + <th scope="col">備註</th> + </tr> + <tr> + <td>{{SpecName('Navigation Timing', '#sec-window.performance-attribute', 'Performance.timing')}}</td> + <td>{{Spec2('Navigation Timing')}}</td> + <td>初步定義</td> + </tr> + </tbody> +</table> + +<h2 id="瀏覽器支援狀況">瀏覽器支援狀況</h2> + +<div> +<div> + + +<p>{{Compat("api.Performance.timing")}}</p> +</div> +</div> + +<h2 id="參照">參照</h2> + +<ul> + <li>屬於 {{domxref("Performance")}} 界面的一部份</li> +</ul> |