Hi,歡迎訪問前端老白
<audio controls> <source src="music.mp3" type="audio/mpeg"> <source src="music.ogg" type="audio/ogg"> Your browser does not support the audio element. </audio>
<audio controls autoplay> <source src="music.mp3" type="audio/mpeg"> <source src="music.ogg" type="audio/ogg"> Your browser does not support the audio element. </audio>
<p>Click the button to play the song:</p> <button onclick="playAudio()">Play Audio</button> <audio id="myAudio"> <source src="music.mp3" type="audio/mpeg"> <source src="music.ogg" type="audio/ogg"> Your browser does not support the audio element. </audio> <script> function playAudio() { var x = document.getElementById("myAudio"); x.play(); } </script>
老白網絡 (http://52shenghuonet.cn/) 前端 后端 zblog主題.網站地圖xml