blob: 695470ce94ca7c95e634e5f7d23b05430cbf8b59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
---
title: MIDIAccess
slug: Web/API/MIDIAccess
tags:
- API
- Web MIDI API
- 引用
- 接口
translation_of: Web/API/MIDIAccess
---
<p>{{SeeCompatTable}}{{APIRef("Web MIDI API")}} </p>
<p><a href="/en-US/docs/Web/API/Web_MIDI_API">Web MIDI API</a> 的 <strong><code>MIDIAccess</code></strong> 接口提供查询 MIDI 输入和输出设备的列表以及获取这些设备的使用权限。</p>
<h2 id="属性">属性</h2>
<dl>
<dt>{{domxref("MIDIAccess.inputs")}} {{readonlyinline}}</dt>
<dd>返回 {{domxref("MIDIInputMap")}} 的实例,以提供对任何可用的 MIDI 输入端口的访问权限。</dd>
<dt>{{domxref("MIDIAccess.outputs")}} {{readonlyinline}}</dt>
<dd>返回 {{domxref("MIDIOutputMap")}} 的实例,以提供任何可用的 MIDI 输出端口的访问权限。</dd>
<dt>{{domxref("MIDIAccess.sysexEnabled")}} {{readonlyinline}}</dt>
<dd>一个布尔型的属性,指明系统是否对现有的 MIDIAccess 实例支持。</dd>
</dl>
<h3 id="事件处理程序">事件处理程序</h3>
<dl>
<dt>{{domxref("MIDIAccess.onstatechange")}}</dt>
<dd>当添加新的 MIDI 端口或者一个存在的端口状态发生改变时被调用。</dd>
</dl>
<h2 id="例子">例子</h2>
<h2 id="标准">标准</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('WebMIDI API','#midiaccess-interface')}}</td>
<td>{{Spec2('WebMIDI API')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div>{{Compat("api.MIDIAccess")}}</div>
|