我正在尝试使用 javascript 控制 html5 视频。我想要的是当用户点击一个按钮时,视频会跳转到另一个帧并从那里继续播放。使用我当前的代码,播放总是在搜索后停止。
function jumpToTime(){
var video = $("video")[0];
video.currentTime = 160;
document.getElementbyId("videoclip").play(); //not working
};
//the following code is probably not really related to the question:
var endtimeoffset = 2000;
video.addEventListener("timeupdate", function() {
if (video.currentTime >= endtimeoffset) {
video.pause();
}
}, false);