本文介绍了使用 <audio> 时,在 .play() 之后是否可以使用 jquery 回调?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

伙计们,我如何播放一个 mp3 文件,然后在第一个完成后再播放另一个?

Guys how do I play an mp3 file and then another once the first has finished?

我尝试了以下没有成功..

I have tried the following without success..

$('#file1)[0].play( function () {
   $('#file2)[0].play();
});

播放音频时可以使用回调吗?

Can you use callbacks when playing audio?

推荐答案

您不是从调用 jQuery 方法开始.

You are not calling a jQuery method to begin with.

您可以将事件处理程序附加到 "onended" 事件:

You could attach an event handler to the "onended" event:

var file = $("#file1");

file.on( "ended", function(){
    $("#file2")[0].play();
});

file[0].play();

这篇关于使用 <audio> 时,在 .play() 之后是否可以使用 jquery 回调?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 08:48