我必须在我的hbbtv项目中使用tag object type =“video / mp4”,我想在vanilia JS中检测电影的结尾。我该怎么办?
答案 0 :(得分:0)
document.getElementById('objectId').addEventListener('ended',endCallback,false);
function endCallback(e) {
//Action
}
答案 1 :(得分:0)
使用AVControl对象时,您必须注册PlayStateChange事件并检查playState 5(已完成)。
document.getElementById('objectId').onPlayStateChange = function() {
if (document.getElementById('objectId').playState == 5) { // FINISHED }
};
http://www.oipf.tv/docs/OIPF-T1-R2_Specification-Volume-5-Declarative-Application-Environment-v2_3-2014-01-24.pdf 7.14.1 A / V控制对象