HIDDevice.opened
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。
Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。
HIDDevice
インターフェイスの読み取り専用プロパティ opened
は、HIDDevice
への接続が開かれていてデータを転送する準備ができているとき true
を返します。
値
boolean
値です。接続が開かれているとき true
です。
例
この例では、HID.getDevices()
でデバイスを取得し、opened
の値をコンソールに出力します。
js
document.addEventListener("DOMContentLoaded", async () => {
let devices = await navigator.hid.getDevices();
devices.forEach((device) => {
console.log(`HID: ${device.opened}`);
});
});
仕様書
Specification |
---|
WebHID API # dom-hiddevice-opened |
ブラウザーの互換性
BCD tables only load in the browser