使用jw播放器时,如何让视频在特定位置播放?

时间:2013-08-02 12:29:11

标签: javascript html jwplayer

我想设置按钮。然后,如果我点击它,视频将从30秒后的位置开始。我该怎么编码呢?

我目前的代码就像这样

<div id="myElement">Loading the player...</div>
<script type="text/javascript">
    jwplayer("myElement").setup({
        file: "http://example.com/video.mp4",
        title: "test",
        height: 400,
        width: 600,
    });
</script>


<button name="test" onclick="document.getElementById('myElement').currentTime = 30;">Start at 30</button>

1 个答案:

答案 0 :(得分:3)

根据the documentation,您可以使用seek()来定位视频。

<button name="test" onclick="jwplayer('myElement').seek(30);">Start at 30</button>