HIDInputReportEvent:data 属性
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
备注: 此特性在 Web Worker(不包括共享 Web Worker)中可用。
HIDInputReportEvent
接口的 data
属性返回包含来自于输入报告数据的 DataView
,如果 HID 接口使用报告 ID,则不包含 reportId
。
值
一个 DataView
。
示例
以下示例把返回的 data
记录到控制台。
js
device.addEventListener("inputreport", (event) => {
const { data, device, reportId } = event;
console.log(data);
});
规范
Specification |
---|
WebHID API # dom-hidinputreportevent-data |
浏览器兼容性
BCD tables only load in the browser