我想设置按钮。然后,如果我点击它,视频将从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>
答案 0 :(得分:3)
根据the documentation,您可以使用seek()
来定位视频。
<button name="test" onclick="jwplayer('myElement').seek(30);">Start at 30</button>