2014-10-03 91 views
0

我試圖觸發HTML視頻標記上的ended事件。問題是,一旦頁面刷新,似乎是在調用結束事件,而不是視頻實際結束。HTML視頻結束事件不在主幹視圖中觸發

任何想法,我可以得到一個事件觸發視頻結束時,而不是當第一次加載頁面時?

events: 
    "ended #video": console.log "video ended" 

回答

0

看起來這是要走的路:

onShow: -> 
     if @model.get('videoQuestion') 
     console.log "show" 
     @$('#video').bind("ended", -> 
      console.log "test" 
     ) 
相關問題