This page was translated from English by the community.Learn more and join the MDN Web Docs community.
AudioNode.context
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since июль 2015 г..
Свойство интерфейсаAudioNode возвращающее связанныйAudioContext, это объект, представляющий граф, в котором находится данный узел.(только для чтения)
In this article
Синтаксис
var aContext = anAudioNode.context;
Значение
ОбъектAudioContext.
Example
js
var AudioContext = window.AudioContext || window.webkitAudioContext;var audioCtx = new AudioContext();var oscillator = audioCtx.createOscillator();var gainNode = audioCtx.createGain();oscillator.connect(gainNode);gainNode.connect(audioCtx.destination);oscillator.context;Спецификации
| Specification |
|---|
| Web Audio API> # dom-audionode-context> |