fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <body> <audio id="myAudio" controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 与元素。 </audio> <p>点击按钮添加新的文本轨道。</p> <button onclick="myFunction()">点我</button> <p><strong>注意:</strong> 目前没有主流浏览器支持 addTextTrack 方法。</p> <script> var x = document.getElementById("myAudio"); function myFunction() { var y = x.addTextTrack("caption"); y.addCue(new TextTrackCue("Test text", 01.000, 04.000,"","","",true)); } </script> </body> </html>
运行结果