我的页面中有一个音频标签,我将一个事件句柄绑定到该ended
事件:
$('#audio').bind('ended', function() {
console.log('ended');//I can see this
$('#audio')[0].play();// but it could not play again
});
起初我玩它:
$('#audio')[0].play()
问题是,可以玩了,在播放结束时,我也可以看到控制台信息,但不能再次播放,请问如何解决这个问题?