2013-07-21 291 views

回答

0

在狀態您的播放器設置,添加此腳本塊,它具有所有基本事件和一些警報:

<script type='text/javascript'> 
jwplayer().onReady(function() { alert('Player is ready'); }); 
jwplayer().onPlay(function() { alert('Player is playing'); }); 
jwplayer().oPause(function() { alert('Player is paused'); }); 
jwplayer().onComplete(function() { alert('Playback is complete'); }); 
</script>