使用自定义按钮将HTML5音频元素静音

时间:2011-06-22 15:27:24

标签: javascript html5 html5-audio

将HTML5音频元素静音的最佳方法是什么?我不想要浏览器的自定义控件,所以我一直在寻找javascript。不幸的是,它似乎对我不起作用:(我无疑做错了什么。

    <audio id="background_audio" autoplay="autoplay">
      <source src="static/audio/clip.ogg" type="audio/ogg" />
      <source src="static/audio/clip.mp3" type="audio/mpeg" />
    </audio> 

<a href="#" onclick="document._video.muted=true; return false">mute sound</a>

仍然关注这个问题。谢谢!

1 个答案:

答案 0 :(得分:52)

should work

document.getElementById('background_audio').muted = true;

演示:http://jsfiddle.net/mattball/sVwXH/(没有jQuery)