我正在尝试创建一个按钮,单击该按钮会播放音频文件,然后再次单击该按钮会播放数组中的下一个文件。我让它播放,但是当我第二次点击它时,它会播放第一个文件和第二个文件。当我第三次按下它时,它会播放第一,第二和第三。似乎我需要重置某些内容或其他内容以清除页面的前两个轨道。这是我所拥有的:
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<script language="javascript" type="text/javascript">
audio = new Array('audio1.mp3','audio2.mp3','audio3.mp3');
index = 0;
function playSound() {
if(index<3){
document.getElementById("start").innerHTML=document.getElementById("start").innerHTML +
"<embed src=\""+audio[index]+"\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
index++;
}
else{ index = 0;
document.getElementById("start").innerHTML=document.getElementById("start").innerHTML +
"<embed src=\""+audio[index]+"\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
index++;
}
}
</script>
<button id="start" type = "button" onclick="playSound();">Start</button>
</body>
</html>