aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html')
-rw-r--r--files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html b/files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html
new file mode 100644
index 0000000000..6e478aa535
--- /dev/null
+++ b/files/zh-cn/web/api/globaleventhandlers/oncanplaythrough/index.html
@@ -0,0 +1,25 @@
+---
+title: GlobalEventHandlers.oncanplaythrough
+slug: Web/API/GlobalEventHandlers/oncanplaythrough
+translation_of: Web/API/GlobalEventHandlers/oncanplaythrough
+---
+<div>{{ ApiRef("HTML DOM") }}</div>
+
+<p>全局事件处理器({{domxref("GlobalEventHandlers")}} )之一的 {{event("canplaythrough")}} 属性,是处理当前元素{{event("canplaythrough")}} 事件的事件处理器{{domxref("EventHandler")}} .</p>
+
+<p>当用户代理可以播放媒体资源并且可以播放至其结束而不必进一步缓冲内容时,触发<code>canplaythrough</code>事件。</p>
+
+<h2 id="语法">语法</h2>
+
+<pre class="syntaxbox"><em><var>element</var></em>.oncanplaythrough = <em>handlerFunction</em>;
+var <em>handlerFunction</em> = <em><var>element</var></em>.oncanplaythrough;
+</pre>
+
+<p> </p>
+
+<h2 id="相关链接">相关链接</h2>
+
+<ul>
+ <li>{{event("canplaythrough")}}</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>