简单教程
提交运行
代码编辑器:
<audio id="myAudio" controls onseeking="myFunction()" onseeked="myFunction()"> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 与元素。 </audio> <p>尝试在音频中寻址: <span id="mySpan"></span></p> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myAudio"); document.getElementById("mySpan").innerHTML=("Seeking: " + x.seeking); } </script>
运行结果: