It's easy, just get your audio element and call the play() method:
audio
play()
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.
load()
pause()
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>
It's easy, just get your
audio
element and call theplay()
method:Check out this example: http://www.storiesinflight.com/html5/audio.html
This site reveals some other cool things like
load()
,pause()
andaudio
elements some other attributes.If you don't want to deal with HTML elements: