Window: sự kiện gamepaddisconnected
Baseline
2025
Newly available
Since December 2025, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The gamepaddisconnected event is fired when the browser detects that a gamepad has been disconnected.
The event will not fire if disallowed by the document's gamepad Permissions Policy.
This event is not cancelable and does not bubble.
Cú pháp
Sử dụng tên sự kiện trong các phương thức như addEventListener(), hoặc thiết lập thuộc tính trình xử lý sự kiện.
addEventListener("gamepaddisconnected", (event) => { })
ongamepaddisconnected = (event) => { }
Ví dụ
To be informed when a gamepad is disconnected, you can add a handler to the window using addEventListener(), like this:
window.addEventListener("gamepaddisconnected", (event) => {
console.log("Lost connection with the gamepad.");
});
Alternatively, you can use the window.ongamepaddisconnected event handler property to establish a handler for the gamepaddisconnected event:
window.ongamepaddisconnected = (event) => {
console.log("Lost connection with the gamepad.");
};
Đặc tả kỹ thuật
| Specification |
|---|
| Gamepad> # event-gamepaddisconnected> |