Navigator:getGamepads() 方法
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.
Navigator.getGamepads()
方法返回一个包含 Gamepad
数组对象,每个对象代表与设备相连的一个游戏手柄。
如果游戏手柄在过程断开连接,则数组中的元素可能为 null
,但剩余的游戏手柄的索引保持不变。
语法
js
getGamepads()
参数
无。
返回值
异常
SecurityError
DOMException
-
权限策略阻止了此特性的使用。
示例
js
window.addEventListener("gamepadconnected", (e) => {
const gp = navigator.getGamepads()[e.gamepad.index];
console.log(
`游戏手柄在索引 ${gp.index} 处已连接:其 ID 为 ${gp.id},具有 ${gp.buttons.length} 个按键和 ${gp.axes.length} 个轴。`,
);
});
规范
Specification |
---|
Gamepad # dom-navigator-getgamepads |
浏览器兼容性
BCD tables only load in the browser