为什么我的youtube嵌入式jwplayer onseek事件在我的网站上不起作用(jwplayer7)

时间:2015-09-06 14:44:17

标签: youtube jwplayer jwplayer7

我的网站使用jwplayer嵌入了自主视频和YouTube视频,

暂停,播放事件在两种情况下都能正常工作,但是搜索甚至只能通过自主视频捕获。

这两个案例使用相同的代码。

有人可以告诉我该怎么做才能解决它?

这是我的代码:

playerInstance = jwplayer("player");
playerInstance.setup({
  modes: [
    file: '<{$youtuve_url}>',
    width: $('#video').width(),
    height: $('#video').height(),
    autostart: false
});

playerInstance.on('seek',function(event){
    console.log("seek");
} );

1 个答案:

答案 0 :(得分:1)

删除modes:[

playerInstance = jwplayer("player");
playerInstance.setup({
   file: '<{$youtuve_url}>',
    width: $('#video').width(),
    height: $('#video').height(),
    autostart: false
});

playerInstance.on('seek',function(event){
    console.log("seek");
} );