--- title: HTMLMediaElement.muted slug: Web/API/HTMLMediaElement/muted tags: - API - HTML DOM - HTMLMediaElement - Property - Web translation_of: Web/API/HTMLMediaElement/muted ---
{{APIRef("HTML DOM")}}

HTMLMediaElement.muted は、メディア要素がミュートしているかどうかを示します。

構文

var isMuted = audioOrVideo.muted
audio.muted = true;

{{jsxref("Boolean")}}。 true はミュートしていることを意味し、false はミュートしていないことを意味します。

var obj = document.createElement('video');
console.log(obj.muted); // false

仕様

仕様 状態 コメント
{{SpecName('HTML WHATWG', "#dom-media-muted", "HTMLMediaElement.muted")}} {{Spec2('HTML WHATWG')}}  
{{SpecName('HTML5 W3C', "embedded-content-0.html#htmlmediaelement", "HTMLMediaElement.muted")}} {{Spec2('HTML5 W3C')}}  

ブラウザーの互換性

{{Compat("api.HTMLMediaElement.muted")}}

関連情報