tryhtml5_av_event_seeked2 在线代码实例
<p>移动音频的播放位置</p>
<audio id="myAudio" controls="">
<source src="/statics/demosource/horse.ogg" type="audio/ogg">
<source src="/statics/demosource/horse.mp3" type="audio/mpeg">
您的浏览器不支持 audio 元素。
</audio>
<script>
var aud = document.getElementById("myAudio");
aud.onseeked = function() {
alert("寻址操作完成!");
};
</script>