P粉6355097192023-08-22 09:50:53
It's easy, just get your audio
element and call the play()
method:
document.getElementById('yourAudioTag').play();
Check out this example: http://www.storiesinflight.com/html5/audio.html
This site reveals some other cool things like load()
, pause()
and audio
elements some other attributes.
P粉5127298622023-08-22 09:12:54
If you don't want to deal with HTML elements:
var audio = new Audio('audio_file.mp3'); audio.play();
function play() { var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3'); audio.play(); }
<button onclick="play()">播放音频</button>