aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/globaleventhandlers/onloadeddata/index.html
blob: 916cb103fc5edc39fde9aec8d1edf526a4b6025a (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
---
title: GlobalEventHandlers.onloadeddata
slug: Web/API/GlobalEventHandlers/onloadeddata
tags:
  - API
  - 事件句柄
translation_of: Web/API/GlobalEventHandlers/onloadeddata
---
<div>{{ ApiRef("HTML DOM") }}</div>

<p>{{domxref("GlobalEventHandlers")}}<strong><code>onloadeddata</code></strong> 属性是事件 {{event("loadeddata")}}的处理{{event("Event_handlers")}}</p>

<p><code>loadeddata</code> 事件当媒体资源的第一帧加载完成时被触发。</p>

<h2 id="语法">语法</h2>

<pre class="syntaxbox"><em><var>element</var></em>.onloadeddata = <em>handlerFunction</em>;
var <em>handlerFunction</em> = <em><var>element</var></em>.onloadeddata;
</pre>

<p><code>handlerFunction</code> is either <code>null</code> or a <a href="/en-US/docs/Web/JavaScript/Reference/Functions" title="/en-US/docs/JavaScript/Reference/Functions_and_function_scope">JavaScript function</a> specifying the handler for the event.</p>

<h2 id="说明">说明</h2>

<table class="spectable standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG','#handler-onloadeddata','onloadeddata')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容">浏览器兼容</h2>



<p>{{Compat("api.GlobalEventHandlers.onloadeddata")}}</p>

<h2 id="参考资料">参考资料</h2>

<ul>
 <li>{{event("loadeddata")}}</li>
 <li><a href="/en-US/docs/Web/Guide/Events/Event_handlers" title="/en-US/docs/Web/Guide/DOM/Events/Event_handlers">DOM event handlers</a></li>
</ul>