从2天开始我遇到了一个关于flowplayer的问题我无法在任何事件中调用外部jquery功能,即使在开始或结束或视频中,如何继续前进。我真的在拉我的头发,请帮助我。
答案 0 :(得分:0)
试试这个
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "http://releases.flowplayer.org/swf/flowplayer-3.2.16.swf",{
clip: {
onBeforeFinish: function () {
this.getPlugin('content').setHtml('onBeforeFinish event fired');
}
},
plugins: {
content: {
url: 'flowplayer.content-3.2.8.swf'
}
}
});
</script>