HIDInputReportEvent:reportId 属性

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

安全上下文: 此项功能仅在一些支持的浏览器安全上下文(HTTPS)中可用。

实验性: 这是一项实验性技术
在将其用于生产之前,请仔细检查浏览器兼容性表格

备注: 此特性在 Web Worker(不包括共享 Web Worker)中可用。

HIDInputReportEvent 接口的 reportId 属性返回此报告的单字节标识前缀,如果 HID 接口不使用报告 ID,则返回 0。

一个单字节标识前缀。

示例

以下示例把传入报告的 reportId 记录到控制台。

js
device.addEventListener("inputreport", (event) => {
  const { data, device, reportId } = event;
  console.log(reportId);
});

规范

Specification
WebHID API
# dom-hidinputreportevent-reportid

浏览器兼容性

BCD tables only load in the browser