3

別のサウンドが終了した後にサウンド ファイルを再生するにはどうすればよいですか? 私がそれを好きなら

first.play();
second.play();

両方のサウンドが同時に再生されます。遊びたい、first.play()終わったら始まるsecond.play()

4

4 に答える 4

4
first.addEventListener('ended', function(){
    second.play();
});
first.play();
于 2012-08-26T06:02:58.120 に答える
0

私は何かをお勧めします:

// if using jQuery:
var audios = $('audio');

audios.each(function(idx){
    $(this).bind('ended', function(){
        var next = audios.get(idx+1);
        if(next){
            next.get(0).play();
        }
    });
});
于 2016-07-10T23:53:20.100 に答える