flowplayer播放完毕调用其他函数
大家好,我在我的网站上使用 flowplayer。当 flowplayer 完成播放音频文件时,我希望调用另一个函数,将我重定向到另一个页面。
这是代码:
load_player = function () {
flowplayer("player",
{
src:HOST + "app/webroot/flow_player/flowplayer-3.2.7.swf",
wmode:'opaque'
},
{
// define an advertisement using content plugin
plugins:{
content:{
url:HOST + 'app/webroot/flow_player/flowplayer.content.swf',
// plugin is initially hidden
display:'none',
// no background and decorations
backgroundGradient:'none', backgroundColor:'transparent', border:0,
// position and dimensions
bottom:0, right:0, width:0, height:0
}
},
onFinish:function () {
window.location = "first_instruction";
}
});
};
onFinish 函数路径在 window.location 中是硬编码的。我希望它是动态的。当它被索引页调用时,它应该将我重定向到 first_instruction,当它被 first_instruction 调用时,它应该将我重定向到 second_instruction。