在利用“超声望”5号音频标签举行活动时是否有任何进展,或利用Dom/jQuery在游击中或最后发射事件的行动?
This answer links to currentTime but there are no examples, Pseudo code below.
<!DOCTYPE html>
<html>
<body>
<audio controls="controls">
<source src="file.ogg" type="audio/ogg" />
<source src="file.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<script src="jquery.js"></script>
<script>
$(document).ready(function () {
$("audio").addEventListener("end", function () {
alert("song has ended");
});
$("audio").addEventListener( 20.2 , function () {
alert("your currently at 20.2 seconds in the track");
});
});
</script>
</body>
</html>