HTML5音频是否存在oncomplete事件?我找不到任何东西。完成后,我正在尝试播放声音。

好吧,特别是我试图一个接一个地播放一系列声音。

谢谢。

最佳答案

ended事件。 。 。

http://dev.w3.org/html5/spec/Overview.html#event-media-ended

例子:

var audioElement = document.getElementById("myAudio");

audioElement.addEventListener('ended', function() {
    // Audio has ended when this function is executed.
},false);

09-20 21:03