blob: 48ef7f7e799001f2c09da1226733d8d1694ccb54 (
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
52
|
---
title: Window.ongamepaddisconnected
slug: Web/API/Window/gamepaddisconnected_event
translation_of: Web/API/Window/ongamepaddisconnected
original_slug: Web/API/Window/ongamepaddisconnected
---
<div>{{DefaultAPISidebar("Gamepad API")}}{{SeeCompatTable}}</div>
<p>The <strong><code>ongamepaddisconnected</code></strong> property of the {{domxref("Window")}} interface represents an event handler that will run when a gamepad is disconnected (when the {{event('gamepaddisconnected')}} event fires).</p>
<p>The event object is of type {{domxref("GamepadEvent")}}.</p>
<h2 id="解析">解析</h2>
<pre class="syntaxbox">window.ongamepaddisconnected = function() { ... };
</pre>
<h2 id="示例">示例</h2>
<pre class="brush:js; line-numbers language-js"><code class="language-js">window<span class="punctuation token">.</span><span class="punctuation token">on</span><span class="string token">gamepaddisconnected =</span> <span class="keyword token">function</span><span class="punctuation token">(</span><span class="punctuation token">)</span> <span class="punctuation token">{</span>
<span class="comment token">// A gamepad has been disconnected</span>
<span class="punctuation token">}</span><span class="punctuation token">;</span></code></pre>
<h2 id="Specifications">Specifications</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('Gamepad ', '#event-gamepaddisconnected', 'gamepaddisconnected event')}}</td>
<td>{{Spec2('Gamepad')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("api.Window.ongamepaddisconnected")}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li><a class="external text" href="https://hacks.mozilla.org/2013/12/the-gamepad-api/" rel="nofollow">The Gamepad API</a> by Ted Mielczarek and Robert Nyman</li>
<li><a href="http://luser.github.io/gamepadtest/">Simple API demo page</a> (<a href="https://github.com/luser/gamepadtest">source</a>)</li>
</ul>
|