从 2 天开始,我遇到了 flowplayer 的问题,即使在开始或结束或视频中,我也无法在任何事件中调用外部 jquery 函数,如何继续。我真的在拉我的头发,请帮助我。
问问题
187 次
1 回答
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>
于 2013-08-04T06:57:16.990 回答