编辑下面的代码:【加编码】
<html> <body> <button onclick="enableMute()" type="button">Mute sound</button> <button onclick="disableMute()" type="button">Enable sound</button> <button onclick="checkMute()" type="button">Check muted status</button> <br> <video id="video1" controls="controls"> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </source></source></video> <script> myVid=document.getElementById("video1"); function enableMute() { myVid.muted=true; } function disableMute() { myVid.muted=false; } function checkMute() { alert(myVid.muted); } </script> <p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂