我的网站使用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");
} );
答案 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");
} );