简单教程
提交运行
代码编辑器:
<audio id="myAudio1" controls> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 你的浏览器不支持audio元素。 </audio> <audio id="myAudio2" controls> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio><br> <button onclick="setMedGroup()" type="button">为两段音频设置媒体组合</button> <button onclick="getMedGroup()" type="button">获取媒体组合</button> <script> var x = document.getElementById("myAudio1"); var y = document.getElementById("myAudio2"); function setMedGroup(){ x.mediaGroup = "test"; y.mediaGroup = "test"; } function getMedGroup(){ alert("音频1媒体组合: " + x.mediaGroup +",音频2媒体组合p: " + y.mediaGroup); } </script>
运行结果: