使用 Bootstrap Modal 停止音频

0 html jquery bootstrap-modal

我正在使用引导模式窗口中包含的 html5 音频。关闭模式时,如果音频尚未完成,音频将继续播放。如何在关闭模态窗口时停止播放音频?

谢谢

Nic*_*ani 6

您必须使用模式的关闭事件,试试这个

$('#myModal').on('hide.bs.modal', function () { //Change #myModal with your modal id
      $('audio').each(function(){
        this.pause(); // Stop playing
        this.currentTime = 0; // Reset time
      }); 
})
Run Code Online (Sandbox Code Playgroud)