Try this: function toggleMute() { var video=document.getElementById("myVideo"); video.muted = !video.muted; }. Check example here.
確定! 回上一頁