首页javascriptaudiojQuery HTML Element - 如何静音音频

jQuery HTML Element - 如何静音音频

我们想知道如何静音音频。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-compat-git.js'></script>
<script type='text/javascript'>
$(function(){
    jQuery('#sound').click(function () {
        jQuery('audio').prop("muted", true);
    });
});
</script>
</head>
<body>
  <audio id="audio" autoplay="autoplay">
    <source src="your audio file" />
  </audio>
  <a href="#noscroll" id="sound">toggle sound</a>
</body>
</html>