如何取消绑定之前设置的 Flowplayer 事件?
flowplayer('player9999').onCuepoint(55000, function() {
...
});
就像点击解除绑定一样:
$('#some').click(function() {
flowplayer('player9999').onCuepoint().unbind(); // something like this.
});
我试过flowplayer("player9999").removeCuepoints
了,但我收到一条错误消息:*Error: flowplayer("player9999").removeCuepoints is not a function)。
我正在使用 FlowPlayer 3.2.9。