代码编辑器:
x
1
<audio id="myAudio1" controls>
2
<source src="/static/i/html/horse.ogg" type="audio/ogg">
3
<source src="/static/i/html/horse.mp3" type="audio/mpeg">
4
你的浏览器不支持audio元素。
5
</audio>
6
<audio id="myAudio2" controls>
7
<source src="/static/i/html/horse.ogg" type="audio/ogg">
8
<source src="/static/i/html/horse.mp3" type="audio/mpeg">
9
您的浏览器不支持 audio 元素。
10
</audio><br>
11
<button onclick="setMedGroup()" type="button">为两段音频设置媒体组合</button>
12
<button onclick="getMedGroup()" type="button">获取媒体组合</button>
13
<script>
14
var x = document.getElementById("myAudio1");
15
var y = document.getElementById("myAudio2");
16
function setMedGroup(){
17
x.mediaGroup = "test";
18
y.mediaGroup = "test";