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

问题描述 投票:19回答:1

什么是静音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>

还是要理解这个问题。谢谢!

javascript html5 html5-audio
1个回答
54
投票

should work

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

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

© www.soinside.com 2019 - 2024. All rights reserved.