4

查看此演示页面:http ://www.phon.ucl.ac.uk/home/mark/audio/play10.htm

快速连续单击Play Sound按钮两次。因为当您再次按下按钮时它还没有完成第一次播放,所以什么都没有发生,并且单击似乎被忽略了。怎么重新编码让它停止当前播放,将播放位置重置到声音的最开始,并在每次单击Play Sound按钮时重新启动它?

4

2 回答 2

5

你可以把它改成这样

var thissound=document.getElementById('audioElemID');
thissound.currentTime=0;
thissound.play();
于 2012-09-07T14:01:34.843 回答
2
thissound=document.getElementById(soundobj);
thissound.currentTime = 0;
于 2012-09-07T14:03:27.573 回答