我正在使用 videojs currentTime() 函数跳转到视频中的特定时间。我让它在 Chrome 中工作,但 Firefox (16) 似乎没有响应(其他 api 功能,如播放/暂停在 FF 中工作)。
Videojs api 文档:https ://github.com/zencoder/video-js/blob/master/docs/api.md#currenttimeseconds--type-integer-or-float
_V_("video").ready(function(){
var vidplayer = this;
});
$(function() {
$('#time').click(function() {
seconds = $(this).text();
vidplayer.currentTime(seconds);
vidplayer.play();
});
});