muted 表示媒體元素是否被靜音。
關(guān)閉視頻的聲音:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML 音頻/視頻 muted 屬性使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <button onclick="enableMute()" type="button">靜音</button> <button onclick="disableMute()" type="button">啟動(dòng)音效</button> <button onclick="checkMute()" type="button">檢查靜音狀態(tài)</button> <br> <video id="video1" controls="controls"> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的瀏覽器不支持 HTML5 video 標(biāo)簽。 </video> <script> myVid=document.getElementById("video1"); function enableMute() { myVid.muted=true; } function disableMute() { myVid.muted=false; } function checkMute() { alert(myVid.muted); } </script> </body> </html>測(cè)試看看 ?/?
靜音屬性設(shè)置或返回是否應(yīng)將音頻/視頻靜音(聲音已關(guān)閉)。
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 muted 屬性。
注意:Internet Explorer 8 及之前的版本不支持該屬性。
設(shè)置 muted 屬性:
audio|video.muted=true|false
返回 muted 屬性:
audio|video.muted
值 | 描述 |
---|---|
true | 指示應(yīng)該關(guān)閉音頻/視頻的聲音。 |
false | 默認(rèn)。指示應(yīng)該打開(kāi)音頻/視頻的聲音。 |
返回值: | 布爾值,true|false |
---|---|
默認(rèn)值: | false |