每当使用HTML5播放音频文件时,我想运行javascript函数。我该怎么办?
如果可能,也适用于视频!
答案 0 :(得分:3)
HTML5 audio
元素包含onplay
事件。您可以按如下方式绑定到它:
var myAudio = document.getElementById('audio_element');
myAudio.onplay = function(e) {
// Your JavaScript function here...
};
video
元素也包含此事件。