隐藏jwplayer播放完毕后的重播按钮

转载自:http://blog.csdn.net/zzm628/article/details/51181077

隐藏jwplayer播放完毕后的重播按钮:

var jwplayerInstance;


jwplayer('video').setup({
'events':{
   onReady:function(){
addListeners();
   },onError:function(){
alert('加载视频失败!请选择其他线路!');
   },onComplete : function () {
videoPlayComplete();
   }
}
});
jwplayerInstance = jwplayer();



function videoPlayComplete(){
jwplayerInstance.setControls(false);
}

猜你喜欢

转载自blog.csdn.net/lijunlinlijunlin/article/details/52249714