我试图使用 currenttime 函数让我的 video.js 播放器从特定时间开始播放。
我已将其直接放入 html 文件中,但是当我在浏览器中打开文件时,视频仍从头开始。我错过了什么?
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
<script>
videojs("example_video_1").ready(function(){
var myPlayer = videojs.setup("example_video_1");
// EXAMPLE: Start playing the video.
myPlayer.currentTime(200);
myPlayer.play();
});
</script>
已编辑:包括结束脚本标记和 jquery 库...仍然不起作用
编辑:如果你想看video.js,请在这里下载:http: //www.videojs.com/downloads/video-js-4.1.0.zip