html5中如何能实现只播放一个音频

2024-10-29 01:58:31
推荐回答(2个)
回答1:

用JS
在他的onplay事件里写
audioB.onplay= function()
{
if(!audioA.paused)
{
audioA.pause();
}
}

实现的方式有很多种,音频的API可以参考这里http://www.w3school.com.cn/html5/html5_ref_audio_video_dom.asp

回答2:

 html5音频播放 - https://21xrx.com/full_stack/Html/html5_audio.html