ended event videojs not working

前端 未结 5 1422

I would like to trigger a simple event when my video is finished. I\'ve placed this directly bellow my video tag.

     

        
5条回答
  •  感动是毒
    2021-01-11 10:55

    "addEvent" and "removeEvent" were replaced by "on" and "off"

    try:

    this.on("ended", function(){ 
    

提交回复
热议问题